MediaWiki:Common.js

From Ara: History Untold Wiki
Revision as of 17:44, 22 October 2024 by Z0eff (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* 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 (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);

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