Added Drama and Poetry tech and replaced Temples with Amphitheaters (#4254)

* Added Drama and Poetry tech

* Moved not-in-ruleset check to building replacement function

* Updated a version number
This commit is contained in:
Arthur van der Staaij
2021-06-26 22:36:39 +02:00
committed by GitHub
parent b628c4238d
commit 784092c56c
9 changed files with 744 additions and 675 deletions

View File

@ -257,38 +257,18 @@
"quote": "'Regard your soldiers as your children, and they will follow you into the deepest valleys; look on them as your own beloved sons, and they will stand by you even unto death.' - Sun Tzu"
},
// Column 4
/*
// Temple and its replacements are religious buildings in G&K
{
"name": "Temple",
"culture": 3,
"specialistSlots": {"Artist": 1},
"requiredBuilding": "Monument",
"faith": 2,
"requiredBuilding": "Shrine",
"maintenance": 2,
"hurryCostModifier": 25,
"requiredTech": "Philosophy"
},
{
"name": "Burial Tomb",
"replaces": "Temple",
"uniqueTo": "Egypt",
"uniques": ["Doubles Gold given to enemy if city is captured"],
"culture": 2,
"happiness": 2,
"specialistSlots": {"Artist": 1},
"requiredBuilding": "Monument",
"hurryCostModifier": 25,
"requiredTech": "Philosophy"
},
{
"name": "Mud Pyramid Mosque",
"replaces": "Temple",
"uniqueTo": "Songhai",
"maintenance": 0,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 25,
"culture": 4,
"requiredBuilding": "Monument",
"requiredTech": "Philosophy"
"requiredTech": "Philosophy",
"uniques": ""
},
*/
{
"name": "National College",
"cost": 125,
@ -299,14 +279,6 @@
"uniques": ["Requires a [Library] in all cities", "Cost increases by [30] per owned city"],
"requiredTech": "Philosophy"
},
{
"name": "National Epic",
"cost": 125,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Requires a [Monument] in all cities", "+[25]% great person generation in this city", "Cost increases by [30] per owned city"],
"requiredTech": "Philosophy"
},
{
"name": "The Oracle",
"culture": 3,
@ -316,6 +288,62 @@
"requiredTech": "Philosophy",
"quote": "'The ancient Oracle said that I was the wisest of all the Greeks. It is because I alone, of all the Greeks, know that I know nothing' - Socrates"
},
{
"name": "Amphitheater",
"culture": 3,
"specialistSlots": {"Artist": 1},
"requiredBuilding": "Monument",
"maintenance": 2,
"hurryCostModifier": 25,
"requiredTech": "Drama and Poetry"
},
{
"name": "Burial Tomb",
"replaces": "Amphitheater",
"uniqueTo": "Egypt",
"uniques": ["Doubles Gold given to enemy if city is captured"],
"culture": 2,
"happiness": 2,
"specialistSlots": {"Artist": 1},
"requiredBuilding": "Monument",
"hurryCostModifier": 25,
"requiredTech": "Drama and Poetry"
// In Vanilla, this replaces Temple and requires Philosophy and a Monument.
// In G&K, this still replaces Temple and requires Philosophy, but becomes a faith building
// (alongside Temple) and thus requires a Shrine instead of a Monument.
// Since faith is not yet implemented, but G&K's Drama and Poetry (which provides the
// Amphiteater, a building with the properties of the vanilla Temple) is, this building
// temporarily replaces Drama and Poetry and requires a Monument while having its Vanilla
// stats, so it's a mish-mash of vanilla and G&K. It should be changed when faith is
// implemented.
},
{
"name": "Mud Pyramid Mosque",
"replaces": "Amphitheater",
"uniqueTo": "Songhai",
"maintenance": 0,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 25,
"culture": 4,
"requiredBuilding": "Monument",
"requiredTech": "Drama and Poetry"
// In Vanilla, this replaces Temple and requires Philosophy and a Monument.
// In G&K, this still replaces Temple and requires Philosophy, but becomes a faith building
// (alongside Temple) and thus requires a Shrine instead of a Monument.
// Since faith is not yet implemented, but G&K's Drama and Poetry (which provides the
// Amphiteater, a building with the properties of the vanilla Temple) is, this building
// temporarily replaces Drama and Poetry and requires a Monument while having its Vanilla
// stats, so it's a mish-mash of vanilla and G&K. It should be changed when faith is
// implemented.
},
{
"name": "National Epic",
"cost": 125,
"culture": 1,
"isNationalWonder": true,
"uniques": ["Requires a [Monument] in all cities", "+[25]% great person generation in this city", "Cost increases by [30] per owned city"],
"requiredTech": "Drama and Poetry"
},
{
"name": "Market",
"gold": 2,
@ -608,7 +636,7 @@
"culture": 4,
"specialistSlots": {"Artist": 1},
"hurryCostModifier": 10,
"requiredBuilding": "Temple",
"requiredBuilding": "Amphitheater",
"maintenance": 2,
"requiredTech": "Acoustics"
},

View File

@ -142,10 +142,16 @@
"techs": [
{
"name": "Philosophy",
"row": 3,
"row": 2,
"prerequisites": ["Writing","Calendar"],
"quote": "'There is only one good, knowledge, and one evil, ignorance.' - Socrates"
},
{
"name": "Drama and Poetry",
"row": 3,
"prerequisites": ["Writing"],
"quote": "'What is drama but life with the dull bits cut out.' - Alfred Hitchcock"
},
{
"name": "Currency",
"row": 7,
@ -177,13 +183,13 @@
{
"name": "Theology",
"row": 2,
"prerequisites": ["Philosophy"],
"prerequisites": ["Philosophy", "Drama and Poetry"],
"quote": "'Three things are necessary for the salvation of man: to know what he ought to believe; to know what he ought to desire; and to know what he ought to do' - St. Thomas Aquinas"
},
{
"name": "Civil Service",
"row": 5,
"prerequisites": ["Currency","Horseback Riding","Philosophy"],
"prerequisites": ["Currency","Horseback Riding","Drama and Poetry"],
"uniques": ["Enables Open Borders agreements"],
"quote": "'The only thing that saves us from the bureaucracy is its inefficiency' - Eugene McCarthy"
},