diff --git a/example/assets/languages/en_US.json b/example/assets/languages/en_US.json deleted file mode 100644 index 8c87532..0000000 --- a/example/assets/languages/en_US.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "dungeons.example.dungeon.example" : "This is a title", - "dungeons.example.dungeon.example.desc" : "This is a description", - "enemies.example.name.example_1" : "This is a hostile named 1", - "enemies.example.name.example_2" : "This is a hostile named 2", - "items.materials.example.example_armor_1" : "This is an armor peace", - "items.materials.example.example_armor_1.desc" : "This is a description of an armor peace", - "items.materials.example.example_material_1" : "This is an material 1", - "items.materials.example.example_material_1.desc" : "This is a description of an material 1", - "items.materials.example.example_material_2" : "This is a material 2", - "items.materials.example.example_material_2.desc" : "This is a description of an material 2", - "skills.category.example.example.skill_example_1" : "This is an example skill", - "skills.category.example.example.skill_example_1.desc" : "This is a description of an material 2", - "admin.category.example.item_list.example_1" : "Example 1", - "admin.category.example.item_list.example_2" : "Example 2", - "admin.category.example.hostiles_list.example_1" : "Example 1", - "admin.category.example.hostiles_list.example_2" : "Example 2", - "admin.category.example.player_list.example_1" : "Example 1", - "admin.category.example.player_list.example_2" : "Example 2", - "admin.category.example.admin_role.example_1" : "Example 1", - "admin.category.example.admin_role.example_2" : "Example 2", - "core_systems.category.example.core_systems.example_1" : "Example 1", - "core_systems.category.example.core_systems.example_2" : "Example 2", - "recipes.category.example.recipes.example_1" : "Example 1", - "recipes.category.example.recipes.example_2" : "Example 2", - "shop.category.example.shop.example_1" : "Example 1", - "shop.category.example.shop.example_2" : "Example 2", - "skills.category.example.skills.example_1" : "Example 1", - "skills.category.example.skills.example_2" : "Example 2" -} \ No newline at end of file diff --git a/example/data/dungeons/example/example.json b/example/data/dungeons/example/example.json deleted file mode 100644 index e6abcd0..0000000 --- a/example/data/dungeons/example/example.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "dungeon": { - "id": "example:example/example", - "displayName": "dungeons.example.dungeons.example", - "description": "dungeons.example.dungeons.example.desc", - "energyCost": 0, - "repeatable": false, - "rooms": [ - { - "id": "example:example/example_1" - }, - { - "id": "example:example/example_2" - }, - { - "id": "example:example/example_1" - } - ] - } -} diff --git a/example/data/enemies/hostiles/example/example_1.json b/example/data/enemies/hostiles/example/example_1.json deleted file mode 100644 index 5226302..0000000 --- a/example/data/enemies/hostiles/example/example_1.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "hostile": { - "id": "example:example/example", - "displayName": "enemies.example.name.example_1", - "meta": { - "health": 90, - "defense": 1.3, - "damage": 4.1, - "criticalChance": 0.3, - "attackRate": 2 - } - } -} diff --git a/example/data/enemies/hostiles/example/example_2.json b/example/data/enemies/hostiles/example/example_2.json deleted file mode 100644 index 493db69..0000000 --- a/example/data/enemies/hostiles/example/example_2.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "hostile": { - "id": "example:example/example", - "displayName": "enemies.example.name.example_2", - "meta": { - "health": 30, - "defense": 0.3, - "damage": 2.1, - "criticalChance": 0.3, - "attackRate": 2 - } - } -} diff --git a/example/data/enemies/rooms/example/example_1.json b/example/data/enemies/rooms/example/example_1.json deleted file mode 100644 index 4186c07..0000000 --- a/example/data/enemies/rooms/example/example_1.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "rooms": { - "id": "example:example/example_1", - "hostiles": ["example:example/example_2"], - "gainXp": 4, - "credits": 200 - } -} diff --git a/example/data/enemies/rooms/example/example_2.json b/example/data/enemies/rooms/example/example_2.json deleted file mode 100644 index be91aa1..0000000 --- a/example/data/enemies/rooms/example/example_2.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "rooms": { - "id": "example:example/example_2", - "hostiles": ["example:example/example_1", "original:example/example_2"], - "gainXp": 3, - "credits": 30 - } -} diff --git a/example/data/items/armour/backpack/example_equipment.json b/example/data/items/armour/backpack/example_equipment.json deleted file mode 100644 index 887dea4..0000000 --- a/example/data/items/armour/backpack/example_equipment.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "armour": { - "id": "example:example_armor_1", - "displayName": "items.materials.example.example_armor_1", - "description": "items.materials.example.example_armor_1.desc", - "texture": "example/assets/armour/backpack/example_1.png", - "stats": { - "attack.base" : 9.2, - "attack.chance" : 0.5, - "attack.rating" : 0.5, - "defence.base" : 55.5, - "defence.chance" : 0.5, - "defence.rating" : 0.5, - "health" : 50, - "penetration.base" : 0.5, - "penetration.chance" : 0.5, - "penetration.rating" : 0.5, - "reflect.base" : 0.5, - "reflect.chance" : 0.5, - "reflect.rating" : 0.5, - "resistance.base" : 0.5, - "resistance.cold" : 0.5, - "resistance.gamma" : 0.5, - "resistance.heat" : 0.5, - "resistance.ion" : 0.5, - "resistance.physical" : 0.5, - "resistance.plasma" : 0.5 - }, - "meta": { - "rarity": "common", - "equipmentSlot": "original:accessory", - "storeCategory": "original:bag" - } - } -} diff --git a/example/data/items/materials/example/example_1.json b/example/data/items/materials/example/example_1.json deleted file mode 100644 index b884a93..0000000 --- a/example/data/items/materials/example/example_1.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "materials": { - "id": "example:example_material_1", - "texture": "original/assets/textures/materials/example/example_1.png", - "displayName": "items.materials.example.example_material_1", - "description": "items.materials.example.example_material_1.desc", - "meta": { - "storeCategory": "original:materials" - } - } -} diff --git a/example/data/items/materials/example/example_2.json b/example/data/items/materials/example/example_2.json deleted file mode 100644 index ebc97b2..0000000 --- a/example/data/items/materials/example/example_2.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "materials": { - "id": "example:example_material_2", - "texture": "original/assets/textures/materials/example/example_2.png", - "displayName": "items.materials.example.example_material_2", - "description": "items.materials.example.example_material_2.desc", - "meta": { - "storeCategory": "original:materials" - } - } -} diff --git a/example/data/recipes/example/example_1.json b/example/data/recipes/example/example_1.json deleted file mode 100644 index 7780ab4..0000000 --- a/example/data/recipes/example/example_1.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "recipe": { - "inputs": [{ "example:example_material_1": 1 }, { "example:example_material_2": 5 }], - "output": { - "example:example_armor_1": 1 - }, - "time_seconds": 10, - "requires": { - "example:example_1": 0 - } - }, - "craft": { - "type": "example:example_1", - "id": "example:example_1" - } -} diff --git a/example/data/skills/example/skill_example_1.json b/example/data/skills/example/skill_example_1.json deleted file mode 100644 index d57279a..0000000 --- a/example/data/skills/example/skill_example_1.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "skills": { - "id": "example:skill_example_1", - "displayName": "skills.category.original.example.skill_example_1", - "description": "skills.category.original.example.skill_example_1.desc", - "meta": { - "category": "example_1", - "topLevel": 10, - "math": { - "start": 50, - "input": 1.1 - } - } - } -} diff --git a/example/manifest.json b/example/manifest.json deleted file mode 100644 index 75888db..0000000 --- a/example/manifest.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "name": "original", - "version": "0.0.1", - "admin_item_list": { - "categories": { - "example:example_1": { - "displayName": "admin.category.example.item_list.example_1" - }, - "example:example_2": { - "displayName": "admin.category.example.item_list.example_2" - } - } - }, - "admin_hostiles_list": { - "categories": { - "example:example_1": { - "displayName": "admin.category.example.hostiles_list.example_1" - }, - "example:example_2": { - "displayName": "admin.category.example.hostiles_list.example_2" - } - } - }, - "admin_panel": { - "categories": { - "original:admin_hostiles_list": { - "displayName": "admin.category.original.hostile_list" - }, - "original:admin_item_list": { - "displayName": "admin.category.original.item_list" - }, - "original:admin_player_list": { - "displayName": "admin.category.original.player_list" - } - } - }, - "admin_player_list": { - "categories": { - "example:example_1": { - "displayName": "admin.category.example.player_list.example_1" - }, - "example:example_2": { - "displayName": "admin.category.example.player_list.example_2" - } - } - }, - "admin_role": { - "categories": { - "example:example_1": { - "displayName": "admin.category.example.admin_role.example_1" - }, - "example:example_2": { - "displayName": "admin.category.example.admin_role.example_2" - } - } - }, - "core_systems": { - "categories": { - "example:example_1": { - "displayName": "core_systems.category.example.core_systems.example_1" - }, - "example:example_2": { - "displayName": "core_systems.category.example.core_systems.example_2" - } - } - }, - "recipes": { - "categories": { - "example:example_1": { - "displayName": "recipes.category.example.recipes.example_1" - }, - "example:example_2": { - "displayName": "recipes.category.example.recipes.example_2" - } - } - }, - "shop": { - "categories": { - "example:example_1": { - "displayName": "shop.category.example.shop.example_1" - }, - "example:example_2": { - "displayName": "shop.category.example.shop.example_2" - } - } - }, - "skills": { - "categories": { - "example:example_1": { - "displayName": "skills.category.example.skills.example_1" - }, - "example:example_2": { - "displayName": "skills.category.example.skills.example_2" - } - } - } -} diff --git a/original/assets/languages/en_US.json b/original/assets/languages/en_US.json new file mode 100644 index 0000000..cd17eb8 --- /dev/null +++ b/original/assets/languages/en_US.json @@ -0,0 +1,125 @@ +{ +"_comment_Admin" : "", +"_comment_Core_Systems" : "", +"_comment_Dungeons" : "", +"_comment_Enemies" : "", + "enemies.original.pirate.black_mark_cruiser" : "Scout_Drone", + "enemies.original.pirate.black_mark_cruiser.desc" : "", + "enemies.original.pirate.raider_frigate" : "", + "enemies.original.pirate.raider_frigate.desc" : "", + "enemies.original.pirate.corvid_corvette" : "", + "enemies.original.pirate.corvid_corvette.desc" : "", + "enemies.original.pirate.scout_drone" : "", + "enemies.original.pirate.scout_drone.desc" : "", + "enemies.original.pirate.snatcher_clipper" : "", + "enemies.original.pirate.snatcher_clipper.desc" : "", + "enemies.original.pirate.black_mark_cruiser" : "", + "enemies.original.pirate.black_mark_cruiser.desc" : "", +"_comment_Equipment_Personal" : "", +"_comment_Equipment_Ship" : "", + "items.ship.original.thruster.Big_ship_thruster" : "", + "items.ship.original.thruster.Big_ship_thruster.desc" : "", +"_comment_Materials" : "", + "items.materials.original.ingots.ingot_gold" : "Gold ingot", + "items.materials.original.ingots.ingot_gold.desc" : "", + "items.materials.original.ores.ore_ilmenite" : "Ilmenite Ore", + "items.materials.original.ores.ore_lmenite.desc" : "", + "items.materials.original.ores.ore_aluminium" : "Aluminium Ore", + "items.materials.original.ores.ore_aluminium.desc" : "", + "items.materials.original.ores.ore_platinum" : "Platinum Ore", + "items.materials.original.ores.ore_platinum.desc" : "", + "items.materials.original.ores.ore_bauxite" : "Bauxite Ore", + "items.materials.original.ores.ore_bauxite.desc" : "", + "items.materials.original.alloys.alloy_steel" : "Steel Ingot", + "items.materials.original.alloys.alloy_steel.desc" : "", + "items.materials.original.ores.ore_chromium" : "Chromium Ore", + "items.materials.original.ores.ore_chromium.desc" : "", + "items.materials.original.ores.ore_coal" : "Coal", + "items.materials.original.ores.ore_coal.desc" : "", + "items.materials.original.ores.ore_cobalt" : "Cobalt Ore", + "items.materials.original.ores.ore_cobalt.desc" : "", + "items.materials.original.ores.ore_copper" : "Copper Ore", + "items.materials.original.ores.ore_copper.desc" : "", + "items.materials.original.ores.ore_gold" : "Gold Ore", + "items.materials.original.ores.ore_gold.desc" : "", + "items.materials.original.ores.ore_lead" : "Lead", + "items.materials.original.ores.ore_lead.desc" : "", + "items.materials.original.ores.ore_nickel" : "Nickel Ore", + "items.materials.original.ores.ore_nickel.desc" : "", + "items.materials.original.ores.ore_palladium" : "Palladium Ore", + "items.materials.original.ores.ore_palladium.desc" : "", + "items.materials.original.ores.ore_silicon" : "Silicon Ore", + "items.materials.original.ores.ore_silicon.desc" : "", + "items.materials.original.ores.ore_titanium" : "Titanium Ore", + "items.materials.original.ores.ore_titanium.desc" : "", + "items.materials.original.ores.ore_tungsten" : "Tungsten Ore", + "items.materials.original.ores.ore_tungsten.desc" : "", + "items.materials.original.ores.ore_uranium" : "Uranium Ore", + "items.materials.original.ores.ore_uranium.desc" : "", + "items.materials.original.ores.ore_vanadium" : "Vanadium Ore", + "items.materials.original.ores.ore_vanadium.desc" : "", + "items.materials.original.ores.ore_wolframite" : "Wolframite Ore", + "items.materials.original.ores.ore_wolframite.desc" : "", + "items.materials.original.ores.ore_zinc" : "Zinc Ore", + "items.materials.original.ores.ore_zinc.desc" : "", + "items.materials.original.ores.Scandium" : "Scandium", + "items.materials.original.ores.Scandium.desc" : "", + "items.materials.original.ores.ore_iron" : "Iron Ore", + "items.materials.original.ores.ore_iron.desc" : "", +"_comment_Quests" : "", +"_comment_Recipes" : "", +"_comment_Shop" : "", +"_comment_Skills" : "", +"_comment_Stats" : "", +"_comment_Tabs" : "", +"_comment_Manifest" : "", + "core_systems.category.original.helmet" : "Helmet", + "core_systems.category.original.suit" : "Suit", + "core_systems.category.original.gloves" : "Glove", + "core_systems.category.original.backpack" : "Backpack", + "core_systems.category.original.boots" : "Boot", + "core_systems.category.original.accessory_1" : "Ring 1", + "core_systems.category.original.accessory_2" : "Ring 2", + "core_systems.category.original.accessory_3" : "Earring 1", + "core_systems.category.original.accessory_4" : "Earring 2", + "core_systems.category.original.weapon" : "Personal Weapon", + "core_systems.category.original.hull_1" : "Hull 1", + "core_systems.category.original.hull_2" : "Hull 2", + "core_systems.category.original.hull_3" : "Hull 3", + "core_systems.category.original.shields" : "Shield", + "core_systems.category.original.engine_1" : "Engine 1", + "core_systems.category.original.engine_2" : "Engine 2", + "core_systems.category.original.weapon_1" : "Ship Weapon 1", + "core_systems.category.original.weapon_2" : "Ship Weapon 2", + "core_systems.category.original.weapon_3" : "Ship Weapon 3", + "core_systems.category.original.weapon_4" : "Ship Weapon 4", + "core_systems.category.original.thruster_1" : "Thruster 1", + "core_systems.category.original.thruster_2" : "Thruster 2", + "core_systems.category.original.thruster_3" : "Thruster 3", + "core_systems.category.original.thruster_4" : "Thruster 4", + "recipes.category.original.hull_sections" : "Hull Components", + "recipes.category.original.hulls" : "Completed Hulls", + "recipes.category.original.organics" : "Organics", + "recipes.category.original.personal_equipment_helmet" : "Helmets", + "recipes.category.original.personal_equipment_suit" : "Suits", + "recipes.category.original.personal_equipment_gloves" : "Gloves", + "recipes.category.original.personal_equipment_backpack" : "Backpacks", + "recipes.category.original.personal_equipment_boots" : "Boots", + "recipes.category.original.personal_equipment_accessories" : "Accessories", + "recipes.category.original.personal_equipment_weapons" : "Personal Weapons", + "recipes.category.original.ship_equipment_shields" : "Ship Shields", + "recipes.category.original.ship_equipment_engines" : "Ship Engines", + "recipes.category.original.ship_equipment_weapons" : "Ship Weapons", + "recipes.category.original.ship_equipment_thrusters" : "Ship Thrusters", + "shop.category.original.featured" : "Featured", + "shop.category.original.ships" : "Ships", + "shop.category.original.personal_equipment" : "Personal Equipment", + "shop.category.original.ship_equipment" : "Ship Upgrades", + "shop.category.original.consumables" : "Consumable", + "shop.category.original.materials" : "Materials", + "shop.category.original.premium" : "Premium", + "recipes.category.original.gadgets_consumables" : "Consumables", +"_comment_Equipment" : "", + "items.materials.original.ship.thruster.big_ship_thruster" : "", + "items.materials.original.ship.thruster.big_ship_thruster.desc" : "" +} \ No newline at end of file diff --git a/example/assets/textures/.gitkeep b/original/data/.gitkeep similarity index 100% rename from example/assets/textures/.gitkeep rename to original/data/.gitkeep diff --git a/original/data/dungeons/.gitkeep b/original/data/dungeons/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/enemies/hostiles/.gitkeep b/original/data/enemies/hostiles/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/enemies/hostiles/pirate/black_mark_cruiser.json b/original/data/enemies/hostiles/pirate/black_mark_cruiser.json new file mode 100644 index 0000000..db74b7a --- /dev/null +++ b/original/data/enemies/hostiles/pirate/black_mark_cruiser.json @@ -0,0 +1,30 @@ +{ + "hostile": { + "id": "original:pirate/black_mark_cruiser", + "displayName": "enemies.original.pirate.black_mark_cruiser", + "description": "enemies.original.pirate.black_mark_cruiser.desc", + "texture": "mypack/assets/textures/enemies/pirates/raider_frigate.png", + "stats": { + "health": 850, + "defense": 5, + "critical.chance": 0.15, + "attack.rate": 0.6, + "damage.base": 8, + "damage.cold": 0, + "damage.gamma": 0, + "damage.heat": 0, + "damage.ion": 0, + "damage.physical": 10, + "damage.plasma": 0, + "resistance.base": 0.1, + "resistance.cold": 0, + "resistance.gamma": 0, + "resistance.heat": 0, + "resistance.ion": 0, + "resistance.physical": 0, + "resistance.plasma": 0 + }, + "loot": [], + "meta": {} + } +} \ No newline at end of file diff --git a/original/data/enemies/hostiles/pirate/corvid_corvette.json b/original/data/enemies/hostiles/pirate/corvid_corvette.json new file mode 100644 index 0000000..c5ce628 --- /dev/null +++ b/original/data/enemies/hostiles/pirate/corvid_corvette.json @@ -0,0 +1,30 @@ +{ + "hostile": { + "id": "original:pirate/corvid_corvette", + "displayName": "enemies.original.pirate.corvid_corvette", + "description": "enemies.original.pirate.corvid_corvette.desc", + "texture": "mypack/assets/textures/enemies/pirates/raider_frigate.png", + "stats": { + "health": 100, + "defense": 0.1, + "critical.chance": 0.2, + "attack.rate": 1, + "damage.base": 2, + "damage.cold": 0, + "damage.gamma": 0, + "damage.heat": 0, + "damage.ion": 0, + "damage.physical": 0, + "damage.plasma": 0, + "resistance.base": 0.2, + "resistance.cold": 0, + "resistance.gamma": 0, + "resistance.heat": 0, + "resistance.ion": 0.1, + "resistance.physical": 0, + "resistance.plasma": 0.1 + }, + "loot": [], + "meta": {} + } +} \ No newline at end of file diff --git a/original/data/enemies/hostiles/pirate/raider_frigate.json b/original/data/enemies/hostiles/pirate/raider_frigate.json new file mode 100644 index 0000000..b13a65e --- /dev/null +++ b/original/data/enemies/hostiles/pirate/raider_frigate.json @@ -0,0 +1,39 @@ +{ + "hostile": { + "id": "original:pirate/raider_frigate", + "displayName": "enemies.original.pirate.raider_frigate", + "description": "enemies.original.pirate.raider_frigate.desc", + "texture": "mypack/assets/textures/enemies/pirates/raider_frigate.png", + "stats": { + "health": 210, + "defense": 1.5, + "critical.chance": 0.2, + "attack.rate": 1, + "damage.base": 8, + "damage.cold": 0, + "damage.gamma": 0, + "damage.heat": 0, + "damage.ion": 0, + "damage.physical": 0, + "damage.plasma": 0, + "resistance.base": 0, + "resistance.cold": 0, + "resistance.gamma": 0, + "resistance.heat": 0, + "resistance.ion": 0, + "resistance.physical": 0, + "resistance.plasma": 0 + }, + "loot": [ + { + "id": "original:ore_iron", + "chance": 1, + "count": { + "min": 1, + "max": 2 + } + } + ], + "meta": {} + } +} \ No newline at end of file diff --git a/original/data/enemies/hostiles/pirate/scout_drone.json b/original/data/enemies/hostiles/pirate/scout_drone.json new file mode 100644 index 0000000..ee42102 --- /dev/null +++ b/original/data/enemies/hostiles/pirate/scout_drone.json @@ -0,0 +1,39 @@ +{ + "hostile": { + "id": "original:pirate/scout_drone", + "displayName": "enemies.original.pirate.scout_drone", + "description": "enemies.original.pirate.scout_drone.desc", + "texture": "mypack/assets/textures/enemies/pirates/raider_frigate.png", + "stats": { + "health": 25, + "defense": 1, + "critical.chance": 0.05, + "attack.rate": 1, + "damage.base": 5, + "damage.cold": 0, + "damage.gamma": 0, + "damage.heat": 0, + "damage.ion": 0, + "damage.physical": 0, + "damage.plasma": 0, + "resistance.base": 0, + "resistance.cold": 0, + "resistance.gamma": 0, + "resistance.heat": 0, + "resistance.ion": 0, + "resistance.physical": 0, + "resistance.plasma": 0 + }, + "loot": [ + { + "id": "original:ore_iron", + "chance": 0.5, + "count": { + "min": 1, + "max": 1 + } + } + ], + "meta": {} + } +} \ No newline at end of file diff --git a/original/data/enemies/hostiles/pirate/snatcher_clipper.json b/original/data/enemies/hostiles/pirate/snatcher_clipper.json new file mode 100644 index 0000000..5dfd1a0 --- /dev/null +++ b/original/data/enemies/hostiles/pirate/snatcher_clipper.json @@ -0,0 +1,47 @@ +{ + "hostile": { + "id": "original:pirate/snatcher_clipper", + "displayName": "enemies.original.pirate.snatcher_clipper", + "description": "enemies.original.pirate.snatcher_clipper.desc", + "texture": "mypack/assets/textures/enemies/pirates/raider_frigate.png", + "stats": { + "health": 100, + "defense": 0.5, + "critical.chance": 0.5, + "attack.rate": 3, + "damage.base": 0, + "damage.cold": 0, + "damage.gamma": 0, + "damage.heat": 0, + "damage.ion": 0, + "damage.physical": 5, + "damage.plasma": 0, + "resistance.base": 0, + "resistance.cold": 0, + "resistance.gamma": 0, + "resistance.heat": -0.1, + "resistance.ion": -0.25, + "resistance.physical": 0, + "resistance.plasma": 0 + }, + "loot": [ + { + "id": "original:ore_copper", + "chance": 1, + "count": { + "min": 1, + "max": 1 + } + }, + { + "id": "original:big_ship_thruster", + "chance": 0.25, + "count": { + "min": 1, + "max": 1 + } + } + ], + "meta": {} + } +} \ No newline at end of file diff --git a/original/data/enemies/rooms/.gitkeep b/original/data/enemies/rooms/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/.gitkeep b/original/data/items/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/equipment/.gitkeep b/original/data/items/equipment/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/equipment/personal/.gitkeep b/original/data/items/equipment/personal/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/equipment/ship/.gitkeep b/original/data/items/equipment/ship/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/equipment/ship/thruster/big_ship_thruster.json b/original/data/items/equipment/ship/thruster/big_ship_thruster.json new file mode 100644 index 0000000..35a37c3 --- /dev/null +++ b/original/data/items/equipment/ship/thruster/big_ship_thruster.json @@ -0,0 +1,22 @@ +{ + "plating": { + "id": "original:Big_ship_thruster", + "displayName": "items.materials.original.ship.thruster.big_ship_thruster", + "description": "items.materials.original.ship.thruster.big_ship_thruster.desc", + "texture": "original/assets/textures/equipement/ship/thrusters/big_ship_thruster.png", + "stats": { + "health": 35, + "defence.rating": 0.1, + "speed": 22.5 + }, + "meta": { + "rarity": "uncommon", + "equipmentSlot": [ + "original:ship_thruster_1", + "original:ship_thruster_2" + ], + "storeCategory": "original:ship_equipment", + "dungeon": "space" + } + } +} diff --git a/original/data/items/materials/.gitkeep b/original/data/items/materials/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/items/materials/alloys/alloy_steel.json b/original/data/items/materials/alloys/alloy_steel.json new file mode 100644 index 0000000..237f9e0 --- /dev/null +++ b/original/data/items/materials/alloys/alloy_steel.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:alloy_steel", + "texture": "original/assets/textures/materials/alloy/alloy_steel.png", + "displayName": "items.materials.original.alloys.alloy_steel", + "description": "items.materials.original.alloys.alloy_steel.desc", + "meta": { + "storeCategory": "original:alloys", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/alloys/scandium.json b/original/data/items/materials/alloys/scandium.json new file mode 100644 index 0000000..3f2462d --- /dev/null +++ b/original/data/items/materials/alloys/scandium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:Scandium", + "texture": "mypack/assets/textures/materials/ore/iron.png", + "displayName": "items.materials.original.ores.Scandium", + "description": "items.materials.original.ores.Scandium.desc", + "meta": { + "storeCategory": "original:alloys", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ingots/ingot_gold.json b/original/data/items/materials/ingots/ingot_gold.json new file mode 100644 index 0000000..de6ab3e --- /dev/null +++ b/original/data/items/materials/ingots/ingot_gold.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ingot_gold", + "texture": "original/assets/textures/materials/ingot/ingot_gold.png", + "displayName": "items.materials.original.ingots.ingot_gold", + "description": "items.materials.original.ingots.ingot_gold.desc", + "meta": { + "storeCategory": "original:ingots", + "storePrice": 1000, + "storeSellValue": 100, + "storeShowWeight": 5, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_aluminium.json b/original/data/items/materials/ores/ore_aluminium.json new file mode 100644 index 0000000..9720dc7 --- /dev/null +++ b/original/data/items/materials/ores/ore_aluminium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_aluminium", + "texture": "original/assets/textures/materials/ore/ore_aluminium.png", + "displayName": "items.materials.original.ores.ore_aluminium", + "description": "items.materials.original.ores.ore_aluminium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_bauxite.json b/original/data/items/materials/ores/ore_bauxite.json new file mode 100644 index 0000000..4003849 --- /dev/null +++ b/original/data/items/materials/ores/ore_bauxite.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_bauxite", + "texture": "original/assets/textures/materials/ore/ore_bauxite.png", + "displayName": "items.materials.original.ores.ore_bauxite", + "description": "items.materials.original.ores.ore_bauxite.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_chromium.json b/original/data/items/materials/ores/ore_chromium.json new file mode 100644 index 0000000..02e6cf5 --- /dev/null +++ b/original/data/items/materials/ores/ore_chromium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_chromium", + "texture": "original/assets/textures/materials/ore/ore_chromium.png", + "displayName": "items.materials.original.ores.ore_chromium", + "description": "items.materials.original.ores.ore_chromium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_coal.json b/original/data/items/materials/ores/ore_coal.json new file mode 100644 index 0000000..5f0e153 --- /dev/null +++ b/original/data/items/materials/ores/ore_coal.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_coal", + "texture": "original/assets/textures/materials/ore/ore_coal.png", + "displayName": "items.materials.original.ores.ore_coal", + "description": "items.materials.original.ores.ore_coal.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_cobalt.json b/original/data/items/materials/ores/ore_cobalt.json new file mode 100644 index 0000000..63d69b6 --- /dev/null +++ b/original/data/items/materials/ores/ore_cobalt.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_cobalt", + "texture": "original/assets/textures/materials/ore/ore_cobalt.png", + "displayName": "items.materials.original.ores.ore_cobalt", + "description": "items.materials.original.ores.ore_cobalt.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_copper.json b/original/data/items/materials/ores/ore_copper.json new file mode 100644 index 0000000..e2ef177 --- /dev/null +++ b/original/data/items/materials/ores/ore_copper.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_copper", + "texture": "original/assets/textures/materials/ore/ore_copper.png", + "displayName": "items.materials.original.ores.ore_copper", + "description": "items.materials.original.ores.ore_copper.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_gold.json b/original/data/items/materials/ores/ore_gold.json new file mode 100644 index 0000000..101e82f --- /dev/null +++ b/original/data/items/materials/ores/ore_gold.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_gold", + "texture": "original/assets/textures/materials/ore/ore_gold.png", + "displayName": "items.materials.original.ores.ore_gold", + "description": "items.materials.original.ores.ore_gold.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_ilmenite.json b/original/data/items/materials/ores/ore_ilmenite.json new file mode 100644 index 0000000..0f27af8 --- /dev/null +++ b/original/data/items/materials/ores/ore_ilmenite.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_ilmenite", + "texture": "original/assets/textures/materials/ore/ilmenite.png", + "displayName": "items.materials.original.ores.ore_ilmenite", + "description": "items.materials.original.ores.ore_ilmenite.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_iron.json b/original/data/items/materials/ores/ore_iron.json new file mode 100644 index 0000000..26e3ef8 --- /dev/null +++ b/original/data/items/materials/ores/ore_iron.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_iron", + "texture": "original/assets/textures/materials/ore/ore_iron.png", + "displayName": "items.materials.original.ores.ore_iron", + "description": "items.materials.original.ores.ore_iron.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_lead.json b/original/data/items/materials/ores/ore_lead.json new file mode 100644 index 0000000..18cf896 --- /dev/null +++ b/original/data/items/materials/ores/ore_lead.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_lead", + "texture": "original/assets/textures/materials/ore/ore_lead.png", + "displayName": "items.materials.original.ores.ore_lead", + "description": "items.materials.original.ores.ore_lead.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_nickel.json b/original/data/items/materials/ores/ore_nickel.json new file mode 100644 index 0000000..459cca3 --- /dev/null +++ b/original/data/items/materials/ores/ore_nickel.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_nickel", + "texture": "original/assets/textures/materials/ore/ore_nickel.png", + "displayName": "items.materials.original.ores.ore_nickel", + "description": "items.materials.original.ores.ore_nickel.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_palladium.json b/original/data/items/materials/ores/ore_palladium.json new file mode 100644 index 0000000..cde8ed7 --- /dev/null +++ b/original/data/items/materials/ores/ore_palladium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_palladium", + "texture": "original/assets/textures/materials/ore/ore_palladium.png", + "displayName": "items.materials.original.ores.ore_palladium", + "description": "items.materials.original.ores.ore_palladium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_platinum.json b/original/data/items/materials/ores/ore_platinum.json new file mode 100644 index 0000000..4893bad --- /dev/null +++ b/original/data/items/materials/ores/ore_platinum.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_platinum", + "texture": "original/assets/textures/materials/ore/ore_platinum.png", + "displayName": "items.materials.original.ores.ore_platinum", + "description": "items.materials.original.ores.ore_platinum.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_silicon.json b/original/data/items/materials/ores/ore_silicon.json new file mode 100644 index 0000000..f5823c2 --- /dev/null +++ b/original/data/items/materials/ores/ore_silicon.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_silicon", + "texture": "original/assets/textures/materials/ore/ore_silicon.png", + "displayName": "items.materials.original.ores.ore_silicon", + "description": "items.materials.original.ores.ore_silicon.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_titanium.json b/original/data/items/materials/ores/ore_titanium.json new file mode 100644 index 0000000..d136c8f --- /dev/null +++ b/original/data/items/materials/ores/ore_titanium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_titanium", + "texture": "original/assets/textures/materials/ore/ore_titanium.png", + "displayName": "items.materials.original.ores.ore_titanium", + "description": "items.materials.original.ores.ore_titanium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_tungsten.json b/original/data/items/materials/ores/ore_tungsten.json new file mode 100644 index 0000000..06505c5 --- /dev/null +++ b/original/data/items/materials/ores/ore_tungsten.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_tungsten", + "texture": "original/assets/textures/materials/ore/ore_tungsten.png", + "displayName": "items.materials.original.ores.ore_tungsten", + "description": "items.materials.original.ores.ore_tungsten.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_uranium.json b/original/data/items/materials/ores/ore_uranium.json new file mode 100644 index 0000000..d503bee --- /dev/null +++ b/original/data/items/materials/ores/ore_uranium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_uranium", + "texture": "original/assets/textures/materials/ore/ore_uranium.png", + "displayName": "items.materials.original.ores.ore_uranium", + "description": "items.materials.original.ores.ore_uranium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_vanadium.json b/original/data/items/materials/ores/ore_vanadium.json new file mode 100644 index 0000000..7a728e2 --- /dev/null +++ b/original/data/items/materials/ores/ore_vanadium.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_vanadium", + "texture": "original/assets/textures/materials/ore/ore_vanadium.png", + "displayName": "items.materials.original.ores.ore_vanadium", + "description": "items.materials.original.ores.ore_vanadium.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_wolframite.json b/original/data/items/materials/ores/ore_wolframite.json new file mode 100644 index 0000000..a1e89ea --- /dev/null +++ b/original/data/items/materials/ores/ore_wolframite.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_wolframite", + "texture": "original/assets/textures/materials/ore/ore_wolframite.png", + "displayName": "items.materials.original.ores.ore_wolframite", + "description": "items.materials.original.ores.ore_wolframite.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/items/materials/ores/ore_zinc.json b/original/data/items/materials/ores/ore_zinc.json new file mode 100644 index 0000000..f13c92d --- /dev/null +++ b/original/data/items/materials/ores/ore_zinc.json @@ -0,0 +1,16 @@ +{ + "materials": { + "id": "original:ore_zinc", + "texture": "original/assets/textures/materials/ore/ore_zinc.png", + "displayName": "items.materials.original.ores.ore_zinc", + "description": "items.materials.original.ores.ore_zinc.desc", + "meta": { + "storeCategory": "original:ores", + "storePrice": 50, + "storeSellValue": 10, + "storeShowWeight": 10, + "storeFeaturedDiscountPercentage": 0, + "storeFeaturedShowWeight": 10 + } + } +} \ No newline at end of file diff --git a/original/data/quests/.gitkeep b/original/data/quests/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/recipes/.gitkeep b/original/data/recipes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/data/skills/.gitkeep b/original/data/skills/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/original/manifest.json b/original/manifest.json new file mode 100644 index 0000000..5b37afb --- /dev/null +++ b/original/manifest.json @@ -0,0 +1,196 @@ +{ + "name": "original", + "version": "1.0.0", + "admin_item_list": { + "categories": {} + }, + "admin_hostiles_list": { + "categories": {} + }, + "admin_player_list": { + "categories": {} + }, + "admin_role": { + "categories": {} + }, + "core_systems": { + "categories": { + "original:helmet": { + "displayName": "core_systems.category.original.helmet", + "slotType": "personal" + }, + "original:suit": { + "displayName": "core_systems.category.original.suit", + "slotType": "personal" + }, + "original:gloves": { + "displayName": "core_systems.category.original.gloves", + "slotType": "personal" + }, + "original:backpack": { + "displayName": "core_systems.category.original.backpack", + "slotType": "personal" + }, + "original:boots": { + "displayName": "core_systems.category.original.boots", + "slotType": "personal" + }, + "original:accessory_1": { + "displayName": "core_systems.category.original.accessory_1", + "slotType": "personal" + }, + "original:accessory_2": { + "displayName": "core_systems.category.original.accessory_2", + "slotType": "personal" + }, + "original:accessory_3": { + "displayName": "core_systems.category.original.accessory_3", + "slotType": "personal" + }, + "original:accessory_4": { + "displayName": "core_systems.category.original.accessory_4", + "slotType": "personal" + }, + "original:weapon": { + "displayName": "core_systems.category.original.weapon", + "slotType": "personal" + }, + "original:hull_1": { + "displayName": "core_systems.category.original.hull_1", + "slotType": "ship" + }, + "original:hull_2": { + "displayName": "core_systems.category.original.hull_2", + "slotType": "ship" + }, + "original:hull_3": { + "displayName": "core_systems.category.original.hull_3", + "slotType": "ship" + }, + "original:shields": { + "displayName": "core_systems.category.original.shields", + "slotType": "ship" + }, + "original:engine_1": { + "displayName": "core_systems.category.original.engine_1", + "slotType": "ship" + }, + "original:engine_2": { + "displayName": "core_systems.category.original.engine_2", + "slotType": "ship" + }, + "original:weapon_1": { + "displayName": "core_systems.category.original.weapon_1", + "slotType": "ship" + }, + "original:weapon_2": { + "displayName": "core_systems.category.original.weapon_2", + "slotType": "ship" + }, + "original:weapon_3": { + "displayName": "core_systems.category.original.weapon_3", + "slotType": "ship" + }, + "original:weapon_4": { + "displayName": "core_systems.category.original.weapon_4", + "slotType": "ship" + }, + "original:thruster_1": { + "displayName": "core_systems.category.original.thruster_1", + "slotType": "ship" + }, + "original:thruster_2": { + "displayName": "core_systems.category.original.thruster_2", + "slotType": "ship" + }, + "original:thruster_3": { + "displayName": "core_systems.category.original.thruster_3", + "slotType": "ship" + }, + "original:thruster_4": { + "displayName": "core_systems.category.original.thruster_4", + "slotType": "ship" + } + } + }, + "quests": { + "categories": {} + }, + "recipes": { + "categories": { + "original:hull_sections": { + "displayName": "recipes.category.original.hull_sections" + }, + "original:hulls": { + "displayName": "recipes.category.original.hulls" + }, + "original:organics": { + "displayName": "recipes.category.original.organics" + }, + "original:personal_equipment_helmet": { + "displayName": "recipes.category.original.personal_equipment_helmet" + }, + "original:personal_equipment_suit": { + "displayName": "recipes.category.original.personal_equipment_suit" + }, + "original:personal_equipment_gloves": { + "displayName": "recipes.category.original.personal_equipment_gloves" + }, + "original:personal_equipment_backpack": { + "displayName": "recipes.category.original.personal_equipment_backpack" + }, + "original:personal_equipment_boots": { + "displayName": "recipes.category.original.personal_equipment_boots" + }, + "original:personal_equipment_accessories": { + "displayName": "recipes.category.original.personal_equipment_accessories" + }, + "original:personal_equipment_weapons": { + "displayName": "recipes.category.original.personal_equipment_weapons" + }, + "original:ship_equipment_shields": { + "displayName": "recipes.category.original.ship_equipment_shields" + }, + "original:ship_equipment_engines": { + "displayName": "recipes.category.original.ship_equipment_engines" + }, + "original:ship_equipment_weapons": { + "displayName": "recipes.category.original.ship_equipment_weapons" + }, + "original:ship_equipment_thrusters": { + "displayName": "recipes.category.original.ship_equipment_thrusters" + }, + "original:gadgets_consumables": { + "displayName": "recipes.category.original.gadgets_consumables" + } + } + }, + "shop": { + "categories": { + "original:featured": { + "displayName": "shop.category.original.featured" + }, + "original:ships": { + "displayName": "shop.category.original.ships" + }, + "original:personal_equipment": { + "displayName": "shop.category.original.personal_equipment" + }, + "original:ship_equipment": { + "displayName": "shop.category.original.ship_equipment" + }, + "original:consumables": { + "displayName": "shop.category.original.consumables" + }, + "original:materials": { + "displayName": "shop.category.original.materials" + }, + "original:premium": { + "displayName": "shop.category.original.premium" + } + } + }, + "skills": { + "categories": {} + } +} \ No newline at end of file