Add new miracles: Divine Mandate and Prosperity Boom; update buff application logic and game state calculations
This commit is contained in:
@@ -13,10 +13,6 @@
|
||||
"type": "AddResource",
|
||||
"targetResource": "Corruption",
|
||||
"value": 3
|
||||
},
|
||||
{
|
||||
"type": "UnlockMiracle",
|
||||
"miraclesToUnlock": [ "unlock_age_of_industry" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
18
Mods/Miracles/divine_mandate.json
Normal file
18
Mods/Miracles/divine_mandate.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "Divine Mandate",
|
||||
"faithCost": 1500,
|
||||
"followersRequired": 350,
|
||||
"productionRequired": 100,
|
||||
"unlockedByDefault": false,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ModifyStat",
|
||||
"targetStat": "FollowersPerSecond",
|
||||
"op": "Add",
|
||||
"value": 0.5
|
||||
},
|
||||
{
|
||||
"type": "DestroySelf"
|
||||
}
|
||||
]
|
||||
}
|
16
Mods/Miracles/prosperity_boom.json
Normal file
16
Mods/Miracles/prosperity_boom.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "Prosperity Boom",
|
||||
"faithCost": 2000,
|
||||
"followersRequired": 1200,
|
||||
"productionRequired": 800,
|
||||
"unlockedByDefault": false,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ApplyBuff",
|
||||
"buffId": "prosperity_buff",
|
||||
"targetStat": "FollowersPerSecond",
|
||||
"multiplier": 5.0,
|
||||
"duration": 60
|
||||
}
|
||||
]
|
||||
}
|
@@ -14,6 +14,7 @@
|
||||
"globalization",
|
||||
"harness_the_sun",
|
||||
"tame_the_atom",
|
||||
"prosperity_boom",
|
||||
"unlock_space_age"
|
||||
]
|
||||
},
|
||||
|
@@ -6,7 +6,16 @@
|
||||
"effects": [
|
||||
{
|
||||
"type": "UnlockMiracle",
|
||||
"miraclesToUnlock": [ "erect_shrine", "communal_effort", "sustainable_practices", "ritual_of_cleansing", "gods_endurance", "geological_survey" ]
|
||||
"miraclesToUnlock": [
|
||||
"erect_shrine",
|
||||
"communal_effort",
|
||||
"sustainable_practices",
|
||||
"ritual_of_cleansing",
|
||||
"gods_endurance",
|
||||
"geological_survey",
|
||||
"divine_mandate",
|
||||
"unlock_age_of_industry"
|
||||
]
|
||||
},
|
||||
{ "type": "DestroySelf" }
|
||||
],
|
||||
|
Reference in New Issue
Block a user