31 lines
567 B
GDScript
31 lines
567 B
GDScript
extends Node
|
|
|
|
const TECHNOLOGIES = {
|
|
"advance_mining": {
|
|
"name": "Advance Mining",
|
|
"description": "Allow mining resources",
|
|
"time": 10,
|
|
"cost": {
|
|
"science": 100,
|
|
"iron": 50
|
|
},
|
|
"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": 200
|
|
},
|
|
"unlock_effects": {
|
|
"water_efficiency": 1.15
|
|
},
|
|
"requires": ["bio_dome"]
|
|
}
|
|
}
|