ardon-income/Ardon-income.html

44 lines
1.9 KiB
HTML

<!DOCTYPE html>
<!--Copyright 2016 Joshua Mudge Licensed under the Apache License 2.0. See license file for information.-->
<html>
<head>
<meta charset="utf-8">
<title>Minecraft Income Calculator</title>
</head>
<p>Minecraft Income Calculator</p>
<p>Enter the number of blocks eligable for rent excluding one "base of operations" you change. (1000 blocks = 1 emerald)</p>
<input type="number" id="blocks"></input>
<br><br>
Enter the number of blocks used for transportation, recreational purposes, soft infrastructure or utilities that is not buildings. (0.5% bonus)
<br><br>
<input type="number" id="infra"></input>
<br><br>
Enter the number of those blocks that qualify as Housing, transportation buildings, buildings for recreational purposes, soft infrastructure buildings or utility buildings, Business buildings, Government buildings or military bases. (1.0% bonus)
<br><br>
<input type="number" id="one"></input>
<br><br>
Enter the number of rent blocks that qualify as being exceptionally designed buildings. (confirmed by two people). (1.5% bonus)
<br><br>
<input type="number" id="design"></input>
<br><br>
Enter the number of government buildings you have. (2.0% bonus for 4.)
<br><br>
<input type="number" id="gov"></input>
<br><br>
Enter the number of embassies in other empires built by permission and confirmed to be embassies by two people. You can only have three or one per city in another empire. (2.0% bonus per embassy)
<br><br>
<input type="number" id="embassies"></input>
<br><br>
Enter 1 if you have a capital. (2.5% bonus)
<br><br>
<input type="number" id="capital"></input>
<br><br>
<input type="button" value="Calculate Income" onclick="calculate()" />
<p id="Answer"></p>
<br><br><br><br><br>
<script src="calculate.js"></script>
<p>&copy; Copyright 2017 Joshua Mudge</p>
<p>Licensed under the Apache License 2.0, see the <a href="LICENSE.txt">license</a> file for details.</p>
</html>