mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-22 12:01:23 +01:00
generate state salesTax
This commit is contained in:
parent
aaa93d5b93
commit
0d7a509980
1 changed files with 3 additions and 1 deletions
|
|
@ -74,6 +74,7 @@ window.BurgsAndStates = (function () {
|
||||||
const states = [{i: 0, name: "Neutrals"}];
|
const states = [{i: 0, name: "Neutrals"}];
|
||||||
const colors = getColors(burgs.length - 1);
|
const colors = getColors(burgs.length - 1);
|
||||||
const each5th = each(5);
|
const each5th = each(5);
|
||||||
|
const maxExpansionism = +powerInput.value;
|
||||||
|
|
||||||
burgs.forEach(function (b, i) {
|
burgs.forEach(function (b, i) {
|
||||||
if (!i) return; // skip first element
|
if (!i) return; // skip first element
|
||||||
|
|
@ -86,10 +87,11 @@ window.BurgsAndStates = (function () {
|
||||||
b.capital = 1;
|
b.capital = 1;
|
||||||
|
|
||||||
// states data
|
// states data
|
||||||
const expansionism = rn(Math.random() * powerInput.value + 1, 1);
|
const expansionism = rn(Math.random() * maxExpansionism + 1, 1);
|
||||||
const basename = b.name.length < 9 && each5th(b.cell) ? b.name : Names.getCultureShort(b.culture);
|
const basename = b.name.length < 9 && each5th(b.cell) ? b.name : Names.getCultureShort(b.culture);
|
||||||
const name = Names.getState(basename, b.culture);
|
const name = Names.getState(basename, b.culture);
|
||||||
const type = cultures[b.culture].type;
|
const type = cultures[b.culture].type;
|
||||||
|
const salesTax = rn(Math.random() * 0.3, 2);
|
||||||
|
|
||||||
const coa = COA.generate(null, null, null, type);
|
const coa = COA.generate(null, null, null, type);
|
||||||
coa.shield = COA.getShield(b.culture, null);
|
coa.shield = COA.getShield(b.culture, null);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue