changed around a bunch of quests and added other data pack stuff too

This commit is contained in:
Robert MacRae 2026-03-10 14:26:02 -03:00
parent 2933308999
commit c799f5d56e
2480 changed files with 52601 additions and 3772 deletions

View File

@ -1,28 +0,0 @@
{
"version": "1.0",
"tiers": [
{
"tier": 1,
"techs": [
{ "id": "alliance_storage_1", "name": "Expanded Warehouse I", "desc": "Increase alliance warehouse cap by 10,000 per resource.", "cost": {"credits":5000,"metal":2000}, "effect": {"warehouseCap":10000}, "prereq": [], "icon": "fa-warehouse", "maxLevel": 3 },
{ "id": "alliance_xp_1", "name": "Shared Knowledge I", "desc": "+5% XP for all members.", "cost": {"credits":8000,"crystal":500}, "effect": {"memberXpBonus":0.05}, "prereq": [], "icon": "fa-graduation-cap", "maxLevel": 3 },
{ "id": "alliance_credits_1", "name": "Trade Network I", "desc": "Reduce market listing fee by 0.5% for all members.", "cost": {"credits":6000,"gas":1000}, "effect": {"marketFeeReduction":0.005}, "prereq": [], "icon": "fa-coins", "maxLevel": 2 }
]
},
{
"tier": 2,
"techs": [
{ "id": "alliance_storage_2", "name": "Expanded Warehouse II", "desc": "Increase warehouse cap by an additional 25,000.", "cost": {"credits":15000,"metal":8000}, "effect": {"warehouseCap":25000}, "prereq": ["alliance_storage_1"], "icon": "fa-warehouse", "maxLevel": 1 },
{ "id": "alliance_craft_1", "name": "Collective Crafting", "desc": "All members gain -10% craft time.", "cost": {"credits":12000,"crystal":1500},"effect": {"craftTimeReduction":0.10}, "prereq": ["alliance_xp_1"], "icon": "fa-hammer", "maxLevel": 2 },
{ "id": "alliance_defense_1", "name": "Defensive Grid I", "desc": "+10% PvP defense for all members.", "cost": {"credits":10000,"metal":5000}, "effect": {"pvpDefenseBonus":0.10}, "prereq": ["alliance_credits_1"],"icon": "fa-shield-alt", "maxLevel": 3 }
]
},
{
"tier": 3,
"techs": [
{ "id": "alliance_dm_1", "name": "Void Tap", "desc": "+15% dark matter production for all members.", "cost": {"credits":25000,"darkMatter":50},"effect": {"darkMatterBonus":0.15}, "prereq": ["alliance_storage_2","alliance_craft_1"], "icon": "fa-atom", "maxLevel": 1 },
{ "id": "alliance_fleet_1", "name": "Fleet Coordination", "desc": "+20% fleet mission rewards for all members.", "cost": {"credits":20000,"gas":5000}, "effect": {"fleetRewardBonus":0.20}, "prereq": ["alliance_defense_1"],"icon": "fa-fighter-jet","maxLevel": 2 }
]
}
]
}

View File

@ -26,25 +26,5 @@
"ui": {
"icon": "fa-monument",
"color": "#4488cc"
},
"lootTable": [
{
"itemId": "wp_alien_ruins",
"weight": 8,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "energy_boost_small",
"weight": 60,
"qtyMin": 1,
"qtyMax": 3
},
{
"itemId": "health_kit_small",
"weight": 60,
"qtyMin": 1,
"qtyMax": 2
}
]
}
}

View File

@ -26,25 +26,5 @@
"ui": {
"icon": "fa-meteor",
"color": "#888844"
},
"lootTable": [
{
"itemId": "wp_arctic_station",
"weight": 8,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "fuel_cell",
"weight": 60,
"qtyMin": 1,
"qtyMax": 5
},
{
"itemId": "health_kit_small",
"weight": 50,
"qtyMin": 1,
"qtyMax": 3
}
]
}
}

View File

@ -26,31 +26,5 @@
"ui": {
"icon": "fa-microchip",
"color": "#44cc44"
},
"lootTable": [
{
"itemId": "room_vault",
"weight": 12,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "wp_void_black",
"weight": 10,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "credit_multiplier",
"weight": 40,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "xp_booster",
"weight": 40,
"qtyMin": 1,
"qtyMax": 2
}
]
}
}

View File

@ -0,0 +1,97 @@
[
{
"id": "pirate_lair",
"name": "Pirate Lair",
"description": "Dangerous pirate hideouts with valuable loot",
"difficulty": "easy",
"minLevel": 1,
"maxPlayers": 4,
"roomCount": [4, 6],
"energyCost": 15,
"rewardMultiplier": 1.0,
"enemyPool": ["space_pirate", "pirate_captain", "defense_turret"],
"lootTable": [
{ "itemId": "iron_ore", "weight": 40, "qtyMin": 1, "qtyMax": 5 },
{ "itemId": "copper_ore", "weight": 30, "qtyMin": 1, "qtyMax": 3 },
{ "itemId": "bandage", "weight": 20, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "pistol_standard_common", "weight": 10, "qtyMin": 1, "qtyMax": 1 }
],
"ui": { "icon": "fa-skull-crossbones", "color": "#e67e22" }
},
{
"id": "asteroid_mine",
"name": "Asteroid Mine",
"description": "Abandoned mining facilities rich in ore deposits",
"difficulty": "easy",
"minLevel": 2,
"maxPlayers": 4,
"roomCount": [4, 7],
"energyCost": 10,
"rewardMultiplier": 0.8,
"enemyPool": ["mining_drone", "rock_creature", "explosive_asteroid"],
"lootTable": [
{ "itemId": "iron_ore", "weight": 35, "qtyMin": 2, "qtyMax": 8 },
{ "itemId": "copper_ore", "weight": 30, "qtyMin": 1, "qtyMax": 6 },
{ "itemId": "titanium_ore", "weight": 20, "qtyMin": 1, "qtyMax": 3 },
{ "itemId": "gold_ore", "weight": 15, "qtyMin": 1, "qtyMax": 2 }
],
"ui": { "icon": "fa-meteor", "color": "#95a5a6" }
},
{
"id": "alien_ruins",
"name": "Alien Ruins",
"description": "Ancient alien structures filled with mysterious technology",
"difficulty": "medium",
"minLevel": 3,
"maxPlayers": 4,
"roomCount": [5, 8],
"energyCost": 20,
"rewardMultiplier": 1.2,
"enemyPool": ["alien_guardian", "ancient_drone", "crystal_golem"],
"lootTable": [
{ "itemId": "flux_crystal", "weight": 30, "qtyMin": 1, "qtyMax": 3 },
{ "itemId": "alien_fauna_sample", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "basic_circuit", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "assault_rifle_common", "weight": 20, "qtyMin": 1, "qtyMax": 1 }
],
"ui": { "icon": "fa-monument", "color": "#8e44ad" }
},
{
"id": "corrupted_vault",
"name": "Corrupted AI Vault",
"description": "Malfunctioning AI facilities with corrupted security systems",
"difficulty": "hard",
"minLevel": 5,
"maxPlayers": 4,
"roomCount": [6, 9],
"energyCost": 25,
"rewardMultiplier": 1.5,
"enemyPool": ["security_drone", "corrupted_ai", "virus_program"],
"lootTable": [
{ "itemId": "logic_circuit", "weight": 30, "qtyMin": 1, "qtyMax": 3 },
{ "itemId": "power_circuit", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "control_circuit", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "sniper_rare", "weight": 20, "qtyMin": 1, "qtyMax": 1 }
],
"ui": { "icon": "fa-robot", "color": "#e74c3c" }
},
{
"id": "nebula_anomaly",
"name": "Nebula Anomaly",
"description": "Strange energy anomalies in the deep void of space",
"difficulty": "extreme",
"minLevel": 8,
"maxPlayers": 4,
"roomCount": [7, 10],
"energyCost": 30,
"rewardMultiplier": 2.0,
"enemyPool": ["energy_being", "phase_shifter", "quantum_entity"],
"lootTable": [
{ "itemId": "quantum_circuit", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "void_crystal", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "phase_crystal", "weight": 25, "qtyMin": 1, "qtyMax": 2 },
{ "itemId": "plasma_cutter_epic", "weight": 25, "qtyMin": 1, "qtyMax": 1 }
],
"ui": { "icon": "fa-star", "color": "#2980b9" }
}
]

View File

@ -0,0 +1,15 @@
[
{ "id": "space_pirate", "name": "Space Pirate", "health": 25, "attack": 10, "defense": 3, "speed": 8, "experience": 15, "credits": 12, "rarity": "common" },
{ "id": "pirate_captain", "name": "Pirate Captain", "health": 40, "attack": 15, "defense": 6, "speed": 12, "experience": 30, "credits": 20, "rarity": "uncommon" },
{ "id": "defense_turret", "name": "Defense Turret", "health": 35, "attack": 14, "defense": 8, "speed": 0, "experience": 20, "credits": 15, "rarity": "common" },
{ "id": "mining_drone", "name": "Mining Drone", "health": 20, "attack": 8, "defense": 3, "speed": 5, "experience": 12, "credits": 8, "rarity": "common" },
{ "id": "rock_creature", "name": "Rock Creature", "health": 45, "attack": 6, "defense": 12, "speed": 3, "experience": 18, "credits": 10, "rarity": "common" },
{ "id": "alien_guardian", "name": "Alien Guardian", "health": 50, "attack": 8, "defense": 5, "speed": 6, "experience": 25, "credits": 15, "rarity": "common" },
{ "id": "ancient_drone", "name": "Ancient Drone", "health": 30, "attack": 12, "defense": 2, "speed": 10, "experience": 20, "credits": 10, "rarity": "uncommon" },
{ "id": "crystal_golem", "name": "Crystal Golem", "health": 80, "attack": 6, "defense": 10, "speed": 4, "experience": 35, "credits": 25, "rarity": "rare" },
{ "id": "security_drone", "name": "Security Drone", "health": 35, "attack": 14, "defense": 4, "speed": 10, "experience": 22, "credits": 15, "rarity": "uncommon" },
{ "id": "corrupted_ai", "name": "Corrupted AI", "health": 60, "attack": 20, "defense": 2, "speed": 15, "experience": 40, "credits": 30, "rarity": "rare" },
{ "id": "energy_being", "name": "Energy Being", "health": 55, "attack": 22, "defense": 3, "speed": 18, "experience": 45, "credits": 35, "rarity": "epic" },
{ "id": "phase_shifter", "name": "Phase Shifter", "health": 50, "attack": 25, "defense": 5, "speed": 20, "experience": 50, "credits": 40, "rarity": "epic" },
{ "id": "quantum_entity", "name": "Quantum Entity", "health": 70, "attack": 35, "defense": 5, "speed": 20, "experience": 60, "credits": 50, "rarity": "legendary" }
]

View File

@ -26,25 +26,5 @@
"ui": {
"icon": "fa-star",
"color": "#cc44ff"
},
"lootTable": [
{
"itemId": "wp_nebula_dawn",
"weight": 10,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "wp_deep_ocean",
"weight": 8,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "xp_booster",
"weight": 60,
"qtyMin": 1,
"qtyMax": 2
}
]
}
}

View File

@ -26,25 +26,5 @@
"ui": {
"icon": "fa-skull-crossbones",
"color": "#cc4444"
},
"lootTable": [
{
"itemId": "wp_lava_forge",
"weight": 6,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "health_kit_large",
"weight": 40,
"qtyMin": 1,
"qtyMax": 2
},
{
"itemId": "fuel_cell",
"weight": 50,
"qtyMin": 1,
"qtyMax": 3
}
]
}
}

View File

@ -26,31 +26,5 @@
"ui": {
"icon": "fa-circle-radiation",
"color": "#ff4488"
},
"lootTable": [
{
"itemId": "wp_void_rift",
"weight": 5,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "room_vault",
"weight": 3,
"qtyMin": 1,
"qtyMax": 1
},
{
"itemId": "xp_booster",
"weight": 50,
"qtyMin": 1,
"qtyMax": 2
},
{
"itemId": "credit_multiplier",
"weight": 30,
"qtyMin": 1,
"qtyMax": 1
}
]
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "backpack_basic_common",
"texture": "assets/gso/textures/armour/backpack/backpack_basic_common.png",
"stats": {
"health": 20,
"resistance": 0.03,
"defenceRating": 1,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "backpack_field_rare",
"texture": "assets/gso/textures/armour/backpack/backpack_field_rare.png",
"stats": {
"health": 40,
"resistance": 0.08,
"defenceRating": 3,
"reflectChance": 0.01
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "backpack_reactor_epic",
"texture": "assets/gso/textures/armour/backpack/backpack_reactor_epic.png",
"stats": {
"health": 70,
"resistance": 0.15,
"defenceRating": 6,
"reflectChance": 0.03
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "body_basic_common",
"texture": "assets/gso/textures/armour/body/body_basic_common.png",
"stats": {
"health": 60,
"resistance": 0.1,
"defenceRating": 4,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "body_exosuit_epic",
"texture": "assets/gso/textures/armour/body/body_exosuit_epic.png",
"stats": {
"health": 180,
"resistance": 0.3,
"defenceRating": 14,
"reflectChance": 0.05
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "body_plated_rare",
"texture": "assets/gso/textures/armour/body/body_plated_rare.png",
"stats": {
"health": 110,
"resistance": 0.2,
"defenceRating": 8,
"reflectChance": 0.02
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "boots_assault_rare",
"texture": "assets/gso/textures/armour/boots/boots_assault_rare.png",
"stats": {
"health": 40,
"resistance": 0.12,
"defenceRating": 4,
"reflectChance": 0.01
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "boots_basic_common",
"texture": "assets/gso/textures/armour/boots/boots_basic_common.png",
"stats": {
"health": 20,
"resistance": 0.05,
"defenceRating": 2,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "boots_gravity_epic",
"texture": "assets/gso/textures/armour/boots/boots_gravity_epic.png",
"stats": {
"health": 65,
"resistance": 0.2,
"defenceRating": 7,
"reflectChance": 0.025
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "hands_basic_common",
"texture": "assets/gso/textures/armour/hands/hands_basic_common.png",
"stats": {
"health": 15,
"resistance": 0.04,
"defenceRating": 1,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "hands_combat_rare",
"texture": "assets/gso/textures/armour/hands/hands_combat_rare.png",
"stats": {
"health": 30,
"resistance": 0.1,
"defenceRating": 3,
"reflectChance": 0.01
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "hands_elite_epic",
"texture": "assets/gso/textures/armour/hands/hands_elite_epic.png",
"stats": {
"health": 50,
"resistance": 0.18,
"defenceRating": 6,
"reflectChance": 0.025
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "helmet_basic_common",
"texture": "assets/gso/textures/armour/helmet/helmet_basic_common.png",
"stats": {
"health": 25,
"resistance": 0.05,
"defenceRating": 2,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "helmet_reinforced_rare",
"texture": "assets/gso/textures/armour/helmet/helmet_reinforced_rare.png",
"stats": {
"health": 45,
"resistance": 0.12,
"defenceRating": 5,
"reflectChance": 0.01
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "helmet_tactical_epic",
"texture": "assets/gso/textures/armour/helmet/helmet_tactical_epic.png",
"stats": {
"health": 70,
"resistance": 0.2,
"defenceRating": 8,
"reflectChance": 0.03
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "pants_basic_common",
"texture": "assets/gso/textures/armour/pants/pants_basic_common.png",
"stats": {
"health": 30,
"resistance": 0.06,
"defenceRating": 2,
"reflectChance": 0.0
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "pants_exo_epic",
"texture": "assets/gso/textures/armour/pants/pants_exo_epic.png",
"stats": {
"health": 85,
"resistance": 0.22,
"defenceRating": 9,
"reflectChance": 0.03
}
}
}
}

View File

@ -0,0 +1,14 @@
{
"templates": {
"armour": {
"id": "pants_reinforced_rare",
"texture": "assets/gso/textures/armour/pants/pants_reinforced_rare.png",
"stats": {
"health": 55,
"resistance": 0.14,
"defenceRating": 5,
"reflectChance": 0.015
}
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "backpack_field_rare",
"texture": "assets/gso/textures/armour/backpack/backpack_field_rare.png",
"stats": {
"health": 40,
"resistance": 0.08,
"defenceRating": 3,
"reflectChance": 0.01
},
"name": "Backpack Field Rare",
"type": "armour",
"rarity": "rare",
"price": 3000,
"currency": "credits",
"description": "Backpack Field Rare.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 5
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "backpack_reactor_epic",
"texture": "assets/gso/textures/armour/backpack/backpack_reactor_epic.png",
"stats": {
"health": 70,
"resistance": 0.15,
"defenceRating": 6,
"reflectChance": 0.03
},
"name": "Backpack Reactor Epic",
"type": "armour",
"rarity": "epic",
"price": 8000,
"currency": "credits",
"description": "Backpack Reactor Epic.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 10
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "boots_assault_rare",
"texture": "assets/gso/textures/armour/boots/boots_assault_rare.png",
"stats": {
"health": 40,
"resistance": 0.12,
"defenceRating": 4,
"reflectChance": 0.01
},
"name": "Boots Assault Rare",
"type": "armour",
"rarity": "rare",
"price": 3000,
"currency": "credits",
"description": "Boots Assault Rare.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 5
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "boots_gravity_epic",
"texture": "assets/gso/textures/armour/boots/boots_gravity_epic.png",
"stats": {
"health": 65,
"resistance": 0.2,
"defenceRating": 7,
"reflectChance": 0.025
},
"name": "Boots Gravity Epic",
"type": "armour",
"rarity": "epic",
"price": 8000,
"currency": "credits",
"description": "Boots Gravity Epic.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 10
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "hands_basic_common",
"texture": "assets/gso/textures/armour/hands/hands_basic_common.png",
"stats": {
"health": 15,
"resistance": 0.04,
"defenceRating": 1,
"reflectChance": 0.0
},
"name": "Hands Basic Common",
"type": "armour",
"rarity": "common",
"price": 1000,
"currency": "credits",
"description": "Hands Basic Common.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 1
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "hands_combat_rare",
"texture": "assets/gso/textures/armour/hands/hands_combat_rare.png",
"stats": {
"health": 30,
"resistance": 0.1,
"defenceRating": 3,
"reflectChance": 0.01
},
"name": "Hands Combat Rare",
"type": "armour",
"rarity": "rare",
"price": 3000,
"currency": "credits",
"description": "Hands Combat Rare.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 5
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "hands_elite_epic",
"texture": "assets/gso/textures/armour/hands/hands_elite_epic.png",
"stats": {
"health": 50,
"resistance": 0.18,
"defenceRating": 6,
"reflectChance": 0.025
},
"name": "Hands Elite Epic",
"type": "armour",
"rarity": "epic",
"price": 8000,
"currency": "credits",
"description": "Hands Elite Epic.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 10
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "helmet_tactical_epic",
"texture": "assets/gso/textures/armour/helmet/helmet_tactical_epic.png",
"stats": {
"health": 70,
"resistance": 0.2,
"defenceRating": 8,
"reflectChance": 0.03
},
"name": "Helmet Tactical Epic",
"type": "armour",
"rarity": "epic",
"price": 8000,
"currency": "credits",
"description": "Helmet Tactical Epic.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 10
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "pants_exo_epic",
"texture": "assets/gso/textures/armour/pants/pants_exo_epic.png",
"stats": {
"health": 85,
"resistance": 0.22,
"defenceRating": 9,
"reflectChance": 0.03
},
"name": "Pants Exo Epic",
"type": "armour",
"rarity": "epic",
"price": 8000,
"currency": "credits",
"description": "Pants Exo Epic.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 10
},
"stackable": false
}
}
}

View File

@ -1,28 +0,0 @@
{
"templates": {
"armour": {
"id": "pants_reinforced_rare",
"texture": "assets/gso/textures/armour/pants/pants_reinforced_rare.png",
"stats": {
"health": 55,
"resistance": 0.14,
"defenceRating": 5,
"reflectChance": 0.015
},
"name": "Pants Reinforced Rare",
"type": "armour",
"rarity": "rare",
"price": 3000,
"currency": "credits",
"description": "Pants Reinforced Rare.",
"categories": [
"shop",
"dungeon_loot"
],
"requirements": {
"level": 5
},
"stackable": false
}
}
}

View File

@ -1,10 +0,0 @@
{
"templates": { "decoration": {
"id": "room_armory", "name": "Armory Wing", "type": "decoration",
"subtype": "room_unlock", "rarity": "rare", "price": 5000, "currency": "credits",
"description": "Unlock the Armory Wing of your starbase. Houses weapon racks, armour stands, and a personal combat trainer.",
"texture": "assets/gso/textures/decorations/room_armory.png",
"roomId": "left_wing",
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,10 +0,0 @@
{
"templates": { "decoration": {
"id": "room_operations", "name": "Operations Centre", "type": "decoration",
"subtype": "room_unlock", "rarity": "epic", "price": 200, "currency": "gems",
"description": "Unlock the Operations Centre. A private command room for coordinating missions and monitoring your empire.",
"texture": "assets/gso/textures/decorations/room_operations.png",
"roomId": "operations",
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,10 +0,0 @@
{
"templates": { "decoration": {
"id": "room_research_lab", "name": "Research Lab", "type": "decoration",
"subtype": "room_unlock", "rarity": "rare", "price": 6000, "currency": "credits",
"description": "Unlock the Research Lab. Advanced crafting terminals and science equipment for developing new technologies.",
"texture": "assets/gso/textures/decorations/room_research_lab.png",
"roomId": "right_wing",
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,10 +0,0 @@
{
"templates": { "decoration": {
"id": "room_throne", "name": "Throne Room", "type": "decoration",
"subtype": "room_unlock", "rarity": "legendary", "price": 0, "currency": "credits",
"description": "A legendary throne room earned only by those who have completed the Commander's Story Arc.",
"texture": "assets/gso/textures/decorations/room_throne.png",
"roomId": "throne_room",
"categories": ["quest_reward", "decoration"], "stackable": false
}}
}

View File

@ -1,10 +0,0 @@
{
"templates": { "decoration": {
"id": "room_vault", "name": "Commander's Vault", "type": "decoration",
"subtype": "room_unlock", "rarity": "epic", "price": 0, "currency": "credits",
"description": "A legendary vault room — only accessible to those who have conquered the Corrupted Vault dungeon.",
"texture": "assets/gso/textures/decorations/room_vault.png",
"roomId": "commanders_vault",
"categories": ["dungeon_loot", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_alien_ruins", "name": "Alien Ruins", "type": "decoration",
"subtype": "wallpaper", "rarity": "epic", "price": 0, "currency": "credits",
"description": "Cryptic green glyphs on ancient stone. Salvaged from the Alien Ruins dungeon.",
"texture": "assets/gso/textures/decorations/wp_alien_ruins.png",
"preview": { "floorColorEven": "#0a1508", "floorColorOdd": "#081208",
"wallColor": "#44ff88", "wallColorLeft": "#0a1e0a", "wallColorRight": "#081808", "wallColorTop": "#102a10",
"doorColor": "#88ffaa", "doorFrameColor": "#44cc66" },
"categories": ["dungeon_loot", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_arctic_station", "name": "Arctic Station", "type": "decoration",
"subtype": "wallpaper", "rarity": "uncommon", "price": 1000, "currency": "credits",
"description": "Crisp whites and icy blues. A frozen outpost at the edge of the galaxy.",
"texture": "assets/gso/textures/decorations/wp_arctic_station.png",
"preview": { "floorColorEven": "#0e1820", "floorColorOdd": "#0c1418",
"wallColor": "#aaddff", "wallColorLeft": "#0c1828", "wallColorRight": "#0a1420", "wallColorTop": "#122030",
"doorColor": "#ddeeff", "doorFrameColor": "#88ccff" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_deep_ocean", "name": "Deep Ocean", "type": "decoration",
"subtype": "wallpaper", "rarity": "uncommon", "price": 900, "currency": "credits",
"description": "Bioluminescent blues and teals. Like a starbase built beneath an alien sea.",
"texture": "assets/gso/textures/decorations/wp_deep_ocean.png",
"preview": { "floorColorEven": "#081820", "floorColorOdd": "#061418",
"wallColor": "#00cccc", "wallColorLeft": "#062030", "wallColorRight": "#041820", "wallColorTop": "#083040",
"doorColor": "#00ffee", "doorFrameColor": "#00bbcc" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_golden_empire", "name": "Golden Empire", "type": "decoration",
"subtype": "wallpaper", "rarity": "epic", "price": 150, "currency": "gems",
"description": "Opulent golds and deep bronzes. Reserved for commanders of the highest rank.",
"texture": "assets/gso/textures/decorations/wp_golden_empire.png",
"preview": { "floorColorEven": "#1a1200", "floorColorOdd": "#140e00",
"wallColor": "#ffcc00", "wallColorLeft": "#221500", "wallColorRight": "#1a1000", "wallColorTop": "#2e1c00",
"doorColor": "#ffee88", "doorFrameColor": "#ddaa00" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_lava_forge", "name": "Lava Forge", "type": "decoration",
"subtype": "wallpaper", "rarity": "rare", "price": 2000, "currency": "credits",
"description": "Volcanic orange and molten red. A station carved from the heart of a dying star.",
"texture": "assets/gso/textures/decorations/wp_lava_forge.png",
"preview": { "floorColorEven": "#1e0a00", "floorColorOdd": "#180800",
"wallColor": "#ff4400", "wallColorLeft": "#2a0800", "wallColorRight": "#200600", "wallColorTop": "#350a00",
"doorColor": "#ffaa00", "doorFrameColor": "#ff6600" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_nebula_dawn", "name": "Nebula Dawn", "type": "decoration",
"subtype": "wallpaper", "rarity": "uncommon", "price": 800, "currency": "credits",
"description": "Soft pink and purple nebula clouds. A peaceful dawn among the stars.",
"texture": "assets/gso/textures/decorations/wp_nebula_dawn.png",
"preview": { "floorColorEven": "#1a1228", "floorColorOdd": "#150e20",
"wallColor": "#cc66ff", "wallColorLeft": "#1a0a28", "wallColorRight": "#140820", "wallColorTop": "#220d35",
"doorColor": "#ff88ff", "doorFrameColor": "#cc44cc" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_void_black", "name": "Void Black", "type": "decoration",
"subtype": "wallpaper", "rarity": "rare", "price": 1500, "currency": "credits",
"description": "Absolute darkness. The walls absorb all light — only edges glow.",
"texture": "assets/gso/textures/decorations/wp_void_black.png",
"preview": { "floorColorEven": "#060608", "floorColorOdd": "#040406",
"wallColor": "#444455", "wallColorLeft": "#0a0a0f", "wallColorRight": "#060608", "wallColorTop": "#111118",
"doorColor": "#8888ff", "doorFrameColor": "#6666cc" },
"categories": ["shop", "decoration"], "stackable": false
}}
}

View File

@ -1,12 +0,0 @@
{
"templates": { "decoration": {
"id": "wp_void_rift", "name": "Void Rift", "type": "decoration",
"subtype": "wallpaper", "rarity": "legendary", "price": 0, "currency": "credits",
"description": "Fractured space-time tears through the walls. Only found deep in the Void Rift.",
"texture": "assets/gso/textures/decorations/wp_void_rift.png",
"preview": { "floorColorEven": "#060010", "floorColorOdd": "#04000c",
"wallColor": "#8800ff", "wallColorLeft": "#0c0020", "wallColorRight": "#080018", "wallColorTop": "#100028",
"doorColor": "#cc44ff", "doorFrameColor": "#9900ee" },
"categories": ["dungeon_loot", "decoration"], "stackable": false
}}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Ballistic Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Ballistic Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Carbon Titanium Composite Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Carbon Titanium Composite Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Chrono Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Chrono Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Dimensional Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Dimensional Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Flux Core Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Flux Core Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Neutronium Composite Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Neutronium Composite Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Phase Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Phase Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Plasma Channel Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Plasma Channel Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Reinforced Steel Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Reinforced Steel Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Superconductive Alloy Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Superconductive Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Voidsteel Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Voidsteel Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Ablative Plating Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Ablative Plating Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Advanced Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Advanced Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Armor Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Armor Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Exotic Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Exotic Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Heavy Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Heavy Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Light Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Light Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -8,20 +8,6 @@
"resistance": 0.0,
"defenceRating": 0,
"reflectChance": 0.0
},
"name": "Standard Hull Section Common",
"type": "hullPlating",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Standard Hull Section Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "bio"
},
"name": "Bio Pulp Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Bio Pulp Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "bio"
},
"name": "Organic Insulation Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Organic Insulation Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "bio"
},
"name": "Plant Matter Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Plant Matter Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Aluminum Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Aluminum Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Bio Composite Material Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Bio Composite Material Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Carbon Nanotube Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Carbon Nanotube Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Ceramic Composite Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Ceramic Composite Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Explosive Compound Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Explosive Compound Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Flex Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Flex Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Fusion Rated Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Fusion Rated Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Glass Composite Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Glass Composite Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Radiation Shield Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Radiation Shield Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Reactive Armor Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Reactive Armor Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Resin Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Resin Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Rubber Polymer Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Rubber Polymer Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Servo Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Servo Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Steel Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Steel Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Titanium Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Titanium Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Transparent Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Transparent Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "chemical"
},
"name": "Tungsten Alloy Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Tungsten Alloy Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Ai Core Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Ai Core Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Basic Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Basic Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Control Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Control Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Dimensional Logic Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Dimensional Logic Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "High Density Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "High Density Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Logic Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Logic Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Navigation Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Navigation Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Power Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Power Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Processor Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Processor Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Quantum Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Quantum Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Reactor Control Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Reactor Control Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

View File

@ -6,20 +6,6 @@
"stats": [],
"meta": {
"materialCategory": "electronics"
},
"name": "Sensor Array Circuit Common",
"type": "materials",
"rarity": "common",
"price": 500,
"currency": "credits",
"description": "Sensor Array Circuit Common.",
"categories": [
"shop",
"dungeon_loot"
],
"stackable": true,
"requirements": {
"level": 1
}
}
}

Some files were not shown because too many files have changed in this diff Show More