This repository has been archived on 2026-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
Galaxy-Strike-Online/GameServer/data/gso/items/consumables/starter_crate.json
2026-03-11 00:32:45 -03:00

40 lines
847 B
JSON

{
"templates": {
"consumable": {
"id": "starter_crate",
"name": "Starter Crate",
"type": "consumable",
"rarity": "uncommon",
"price": 800,
"currency": "credits",
"description": "A crate of starter supplies for new recruits",
"texture": "assets/gso/textures/consumables/starter_crate.png",
"effect": {
"grantItems": [
{
"id": "health_kit_small",
"qty": 3
},
{
"id": "energy_boost_small",
"qty": 3
},
{
"id": "fuel_cell",
"qty": 5
}
]
},
"categories": [
"shop",
"quest_reward",
"starter"
],
"requirements": {
"level": 1
},
"stackable": true,
"maxStack": 5
}
}
}