Skip to content
Snippets Groups Projects
Commit 3dce8d81 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'fix-undermining-for-schools' into 'pregmod-master'

Fix undermining for schools

Closes #2587

See merge request !8433
parents 81a9e747 2ed4b1af
No related branches found
No related tags found
1 merge request!8433Fix undermining for schools
...@@ -568,6 +568,7 @@ App.Data.Policies.Selection = { ...@@ -568,6 +568,7 @@ App.Data.Policies.Selection = {
title: "Undermine The Slave School", title: "Undermine The Slave School",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.TSS.schoolPresent === 1); }, get requirements() { return (V.TSS.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -584,6 +585,7 @@ App.Data.Policies.Selection = { ...@@ -584,6 +585,7 @@ App.Data.Policies.Selection = {
title: "Undermine The Utopian Orphanage", title: "Undermine The Utopian Orphanage",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.TUO.schoolPresent === 1); }, get requirements() { return (V.TUO.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -600,6 +602,7 @@ App.Data.Policies.Selection = { ...@@ -600,6 +602,7 @@ App.Data.Policies.Selection = {
title: "Undermine the Growth Research Institute", title: "Undermine the Growth Research Institute",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.GRI.schoolPresent === 1); }, get requirements() { return (V.GRI.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -609,6 +612,7 @@ App.Data.Policies.Selection = { ...@@ -609,6 +612,7 @@ App.Data.Policies.Selection = {
title: "St. Claver Preparatory subsidy", title: "St. Claver Preparatory subsidy",
text: "you will subsidize this school's branch campus in your arcology.", text: "you will subsidize this school's branch campus in your arcology.",
activatedText: "you are subsidizing this school's branch campus in your arcology.", activatedText: "you are subsidizing this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.SCP.schoolProsperity < 10 && V.SCP.schoolPresent === 1); }, get requirements() { return (V.SCP.schoolProsperity < 10 && V.SCP.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
}, },
...@@ -616,6 +620,7 @@ App.Data.Policies.Selection = { ...@@ -616,6 +620,7 @@ App.Data.Policies.Selection = {
title: "Undermine St. Claver Preparatory", title: "Undermine St. Claver Preparatory",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.SCP.schoolPresent === 1); }, get requirements() { return (V.SCP.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -632,6 +637,7 @@ App.Data.Policies.Selection = { ...@@ -632,6 +637,7 @@ App.Data.Policies.Selection = {
title: "Undermine L'École des Enculées", title: "Undermine L'École des Enculées",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.LDE.schoolPresent === 1); }, get requirements() { return (V.LDE.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -648,6 +654,7 @@ App.Data.Policies.Selection = { ...@@ -648,6 +654,7 @@ App.Data.Policies.Selection = {
title: "Undermine the Gymnasium-Academy", title: "Undermine the Gymnasium-Academy",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.TGA.schoolPresent === 1); }, get requirements() { return (V.TGA.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -664,6 +671,7 @@ App.Data.Policies.Selection = { ...@@ -664,6 +671,7 @@ App.Data.Policies.Selection = {
title: "Undermine The Cattle Ranch", title: "Undermine The Cattle Ranch",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.TCR.schoolPresent === 1); }, get requirements() { return (V.TCR.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -680,6 +688,7 @@ App.Data.Policies.Selection = { ...@@ -680,6 +688,7 @@ App.Data.Policies.Selection = {
title: "Undermine the Futanari Sisters", title: "Undermine the Futanari Sisters",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.TFS.schoolPresent === 1); }, get requirements() { return (V.TFS.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -696,6 +705,7 @@ App.Data.Policies.Selection = { ...@@ -696,6 +705,7 @@ App.Data.Policies.Selection = {
title: "Undermine the Hippolyta Academy", title: "Undermine the Hippolyta Academy",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.HA.schoolPresent === 1); }, get requirements() { return (V.HA.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
...@@ -712,6 +722,7 @@ App.Data.Policies.Selection = { ...@@ -712,6 +722,7 @@ App.Data.Policies.Selection = {
title: "Undermine Nueva Universidad de Libertad", title: "Undermine Nueva Universidad de Libertad",
text: "you will covertly hurt this school's branch campus in your arcology.", text: "you will covertly hurt this school's branch campus in your arcology.",
activatedText: "you are covertly hurting this school's branch campus in your arcology.", activatedText: "you are covertly hurting this school's branch campus in your arcology.",
enable: -1,
get requirements() { return (V.NUL.schoolPresent === 1); }, get requirements() { return (V.NUL.schoolPresent === 1); },
get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; }, get note() { return `Will cost ${cashFormat(1000)} weekly to maintain; does not cost reputation to start`; },
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment