48 lines
948 B
GDScript
48 lines
948 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 50%.",
|
|
"time": 10,
|
|
"cost": {
|
|
"science": 1
|
|
},
|
|
"texture": "res://assets/tech/hydro_engineering.png",
|
|
"unlock_effects": {
|
|
|
|
},
|
|
"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": {
|
|
|
|
},
|
|
"requires": ["hydro_engineering"]
|
|
}
|
|
}
|