MediaWiki:Common.js: Difference between revisions

From Ara: History Untold Wiki
No edit summary
No edit summary
Line 3: Line 3:
/* Yield Calculator */
/* Yield Calculator */
var a, b, c, e;
var a, b, c, e;
a = 65;
a = 65; /* City Production */
b = 6;
b = 6; /* Yield(Apples) of the region */
c = 3;
c = 3; /* Amount of Farms in the region */
e = 250;
e = 250; /* Percentage Bonus in Percentage (e.g. 50% from a Plow) */
z = Math.floor(a*b+b*5*c+5+(a+5*c)*(e/100)+(c-1)*5+a);
z = Math.floor(a*b+b*5*c+5+(a+5*c)*(e/100)+(c-1)*5+a);


document.getElementById("foodYield").innerHTML = z;
document.getElementById("foodYield").innerHTML = z;

Revision as of 17:38, 22 October 2024

/* Any JavaScript here will be loaded for all users on every page load. */

/* Yield Calculator */
var a, b, c, e;
a = 65; /* City Production */
b = 6; /* Yield(Apples) of the region */
c = 3; /* Amount of Farms in the region */
e = 250; /* Percentage Bonus in Percentage (e.g. 50% from a Plow) */
z = Math.floor(a*b+b*5*c+5+(a+5*c)*(e/100)+(c-1)*5+a);

document.getElementById("foodYield").innerHTML = z;