Widget:YieldCalc: Difference between revisions
No edit summary Tag: Reverted |
No edit summary Tag: Reverted |
||
Line 5: | Line 5: | ||
</noinclude> | </noinclude> | ||
<includeonly> | <includeonly> | ||
/* Yield Calculator */ | /* Yield Calculator */ | ||
let a = 65; /* City Production */ | |||
let a = | |||
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 */ | ||
Line 28: | Line 13: | ||
let f = 1; /* Extra farm adjacency from religious verse (Boolean) */ | let f = 1; /* Extra farm adjacency from religious verse (Boolean) */ | ||
let h = c + f; /* Add f to the actual amount of farms in the region */ | let h = c + f; /* Add f to the actual amount of farms in the region */ | ||
let y = 6; | |||
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; | document.getElementById("foodYield").innerHTML = z; | ||
</includeonly> | </includeonly> |
Revision as of 21:33, 24 October 2024
This widget is used to display and calculate the yield with the values submitted by the user.
Usage: {{#Widget:YieldCalc}}