Update resource values and unlock new miracles; refactor tier loading logic
This commit is contained in:
@@ -7,12 +7,12 @@
|
||||
{
|
||||
"type": "AddResource",
|
||||
"targetResource": "Followers",
|
||||
"value": 100
|
||||
"value": 10
|
||||
},
|
||||
{
|
||||
"type": "AddResource",
|
||||
"targetResource": "Corruption",
|
||||
"value": 0.02
|
||||
"value": 0.5
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"name": "Divine Frenzy",
|
||||
"faithCost": 200,
|
||||
"followersRequired": 50,
|
||||
"unlockedByDefault": true,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ApplyBuff",
|
||||
"targetBuffStat": "FaithPerFollower",
|
||||
"multiplier": 2.0,
|
||||
"duration": 30
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"name": "Divine Sacrifice",
|
||||
"faithCost": 250,
|
||||
"unlockedByDefault": false,
|
||||
"followersRequired": 100,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ConvertResource",
|
||||
"fromResource": "Followers",
|
||||
"fromAmount": 50,
|
||||
"toResource": "Faith",
|
||||
"toAmount": 1000
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,15 +0,0 @@
|
||||
{
|
||||
"name": "Purge Sins",
|
||||
"faithCost": 100,
|
||||
"followersRequired": 20,
|
||||
"unlockedByDefault": true,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ConvertResource",
|
||||
"fromResource": "Followers",
|
||||
"fromAmount": 20,
|
||||
"toResource": "Corruption",
|
||||
"toAmount": -5
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
{
|
||||
"name": "Refined Dogma",
|
||||
"faithCost": 1000,
|
||||
"followersRequired": 250,
|
||||
"unlockedByDefault": true,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ModifyStat",
|
||||
"targetStat": "FaithPerFollower",
|
||||
"op": "Add",
|
||||
"value": 0.1
|
||||
}
|
||||
]
|
||||
}
|
14
Mods/Miracles/ritual_of_cleansing.json
Normal file
14
Mods/Miracles/ritual_of_cleansing.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "Ritual of Cleansing",
|
||||
"faithCost": 1000,
|
||||
"followersRequired": 200,
|
||||
"productionRequired": 100,
|
||||
"unlockedByDefault": false,
|
||||
"effects": [
|
||||
{
|
||||
"type": "AddResource",
|
||||
"targetResource": "Corruption",
|
||||
"value": -10
|
||||
}
|
||||
]
|
||||
}
|
18
Mods/Miracles/sustainable_practices.json
Normal file
18
Mods/Miracles/sustainable_practices.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "Sustainable Practices",
|
||||
"faithCost": 1200,
|
||||
"followersRequired": 300,
|
||||
"productionRequired": 150,
|
||||
"unlockedByDefault": false,
|
||||
"effects": [
|
||||
{
|
||||
"type": "ModifyStat",
|
||||
"targetStat": "CorruptionPerSecond",
|
||||
"op": "Add",
|
||||
"value": -0.1
|
||||
},
|
||||
{
|
||||
"type": "DestroySelf"
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"name": "Advanced Worship",
|
||||
"faithCost": 500,
|
||||
"unlockedByDefault": true,
|
||||
"followersRequired": 100,
|
||||
"effects": [
|
||||
{
|
||||
"type": "UnlockMiracle",
|
||||
"miraclesToUnlock": [ "divine_sacrifice" ]
|
||||
},
|
||||
{ "type": "DestroySelf" }
|
||||
]
|
||||
}
|
@@ -6,7 +6,7 @@
|
||||
"effects": [
|
||||
{
|
||||
"type": "UnlockMiracle",
|
||||
"miraclesToUnlock": [ "erect_shrine", "communal_effort" ]
|
||||
"miraclesToUnlock": [ "erect_shrine", "communal_effort", "sustainable_practices", "ritual_of_cleansing" ]
|
||||
},
|
||||
{ "type": "DestroySelf" }
|
||||
],
|
||||
|
Reference in New Issue
Block a user