ArkSol/scripts/technologies.gd

48 lines
996 B
GDScript

extends Node
const TECHNOLOGIES = {
"advanced_mining": {
"name": "Advanced Mining",
"description": "Allow mining resources",
"time": 10,
"cost": {
"science": 1,
"iron": 5
},
"texture": "res://assets/tech/Mining_Drill.png",
"unlock_effects": {
},
"unlocks_buildings": ["uran_mine", "copper_mine", "aluminium_mine"],
"requires": []
},
"hydro_engineering": {
"name": "Inżynieria Hydrotermalna",
"description": "Zwiększa wydobycie wody o 15%.",
"time": 10,
"cost": {
"science": 1
},
"texture": "res://assets/tech/hydro_engineering.png",
"unlock_effects": {
"water_efficiency": 1.15
},
"requires": ["advanced_mining"]
},
"terraforming": {
"name": "Terraforming",
"description": "Allow terreforming planet",
"time": 10,
"cost": {
"science": 10,
"iron": 5,
"aluminium":10
},
"texture": "res://assets/tech/terraforming.png",
"unlock_effects": {
"water_efficiency": 1.15
},
"requires": ["hydro_engineering"]
}
}