Skip to content
Snippets Groups Projects
Commit 957b4f48 authored by Pregmodder's avatar Pregmodder
Browse files

Merge branch 'policy-fix' into 'pregmod-master'

School policy fix

See merge request pregmodfan/fc-pregmod!7133
parents c9a1ff20 340e8a0a
No related branches found
No related tags found
No related merge requests found
...@@ -470,7 +470,7 @@ App.Data.Policies.Selection = { ...@@ -470,7 +470,7 @@ App.Data.Policies.Selection = {
"policies.publicPA": [ "policies.publicPA": [
{ {
title: "Public Personal Assistant", title: "Public Personal Assistant",
get text() { return `${V.assistant.name} is part of your public image.`; }, get text() { return `${V.assistant.name} will become part of your public image.`; },
get activatedText() { return `${V.assistant.name} is part of your public image.`; }, get activatedText() { return `${V.assistant.name} is part of your public image.`; },
get note() { return `May improve cultural development if ${V.assistant.name}'s appearance is fashionable`; } get note() { return `May improve cultural development if ${V.assistant.name}'s appearance is fashionable`; }
} }
...@@ -539,7 +539,7 @@ App.Data.Policies.Selection = { ...@@ -539,7 +539,7 @@ App.Data.Policies.Selection = {
title: "The Slave School subsidy", title: "The Slave School 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.",
requirements: function() { return (V.TSS.schoolProsperity < 10 && V.TSS.schoolProsperity < 10); }, requirements: function() { return (V.TSS.schoolProsperity < 10 && 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`; },
}, },
{ {
...@@ -555,7 +555,7 @@ App.Data.Policies.Selection = { ...@@ -555,7 +555,7 @@ App.Data.Policies.Selection = {
title: "The Growth Research Institute subsidy", title: "The Growth Research Institute 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.",
requirements: function() { return (V.GRI.schoolProsperity < 10 && V.GRI.schoolProsperity < 10); }, requirements: function() { return (V.GRI.schoolProsperity < 10 && 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`; },
}, },
{ {
......
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