MediaWiki:Common.js: Difference between revisions
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
let b = 6; /* Yield(Apples) of the region */ | let b = 6; /* Yield(Apples) of the region */ | ||
let c = 3; /* Amount of Farms in the region */ | let c = 3; /* Amount of Farms in the region */ | ||
let e = 250; /* Percentage Bonus (e.g. 50% from a Plow) */ | let e = 250; /* Total Percentage Bonus (e.g. 50% from a Plow) */ | ||
f = 1; /* Extra farm adjacency from religious verse (Boolean) */ | f = 1; /* Extra farm adjacency from religious verse (Boolean) */ |
Revision as of 17:59, 22 October 2024
/* Any JavaScript here will be loaded for all users on every page load. */
/* Yield Calculator */
let a = 65; /* City Production */
let b = 6; /* Yield(Apples) of the region */
let c = 3; /* Amount of Farms in the region */
let e = 250; /* Total Percentage Bonus (e.g. 50% from a Plow) */
f = 1; /* Extra farm adjacency from religious verse (Boolean) */
h = c + f; /* Add f to the actual amount of farms in the region */
z = Math.floor(a*b+b*5*h+5+(a+5*h)*(e/100)+(h-1)*5+a); /* Food yield for a single farm in the region */
document.getElementById("foodYield").innerHTML = z;