Skip to content
Snippets Groups Projects
Commit 07713546 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

structure set

parent 98e1d8f1
No related branches found
No related tags found
1 merge request!7375Move edicts globals into an object.
...@@ -380,43 +380,50 @@ App.Data.resetOnNGPlus = { ...@@ -380,43 +380,50 @@ App.Data.resetOnNGPlus = {
PClossStreak: 0, PClossStreak: 0,
foughtThisWeek: 0, foughtThisWeek: 0,
/* edicts */ /* edicts */
alternativeRents: 0, edicts: {
enslavementRights: 0, alternativeRents: 0,
securityExemption: 0, enslavementRights: 0,
sellData: 0, sellData: 0,
propCampaignBoost: 0, propCampaignBoost: 0,
slaveWatch: 0, tradeLegalAid: 0,
subsidyChurch: 0, taxTrade: 0,
limitImmigration: 0, slaveWatch: 0,
openBorders: 0, subsidyChurch: 0,
slavesOfficers: 0, SFSupportLevel: 0,
martialSchool: 0, limitImmigration: 0,
discountMercenaries: 0, openBorders: 0,
militiaFounded: 0, weaponsLaw: 3,
recruitVolunteers: 0, defense: {
conscription: 0, soldierWages: 1,
militaryService: 0, slavesOfficers: 0,
militarizedSociety: 0, discountMercenaries: 0,
militaryExemption: 0, militiaFounded: 0,
lowerRequirements: 0, recruitVolunteers: 0,
noSubhumansInArmy: 0, conscription: 0,
pregExemption: 0, militaryService: 0,
eliteOfficers: 0, militarizedSociety: 0,
liveTargets: 0, militaryExemption: 0,
legionTradition: 0, lowerRequirements: 0,
eagleWarriors: 0, noSubhumansInArmy: 0,
ronin: 0, pregExemption: 0,
sunTzu: 0, FS: {
mamluks: 0, legionTradition: 0,
pharaonTradition: 0, eagleWarriors: 0,
weaponsLaw: 3, ronin: 0,
soldierWages: 1, sunTzu: 0,
militiaSoldierPrivilege: 0, mamluks: 0,
slaveSoldierPrivilege: 0, pharaonTradition: 0,
mercSoldierPrivilege: 0, },
tradeLegalAid: 0, privilege: {
taxTrade: 0, militiaSoldier: 0,
slaveSoldier: 0,
mercSoldier: 0,
},
martialSchool: 0,
eliteOfficers: 0,
liveTargets: 0,
}
},
/* buildings */ /* buildings */
secHQ: 0, secHQ: 0,
secMenials: 0, secMenials: 0,
...@@ -533,7 +540,6 @@ App.Data.resetOnNGPlus = { ...@@ -533,7 +540,6 @@ App.Data.resetOnNGPlus = {
mercUnits: [], mercUnits: [],
/* SFanon additions */ /* SFanon additions */
SFSupportLevel: 0,
SFGear: 0, SFGear: 0,
SavedLeader: 0, SavedLeader: 0,
SavedSFI: 0, SavedSFI: 0,
......
...@@ -2,5 +2,5 @@ App.Version = { ...@@ -2,5 +2,5 @@ App.Version = {
base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
pmod: "3.6.2", pmod: "3.6.2",
commitHash: null, commitHash: null,
release: 1083 release: 1084
}; };
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