-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (74 loc) · 3.69 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<script src="rbxtbrnd.js"></script>
<link rel="stylesheet" href="rbxtbrnd.css">
<div>
<button onclick='genMap()'>Generate random map</button>
<span id='map'>Yes I want some UI designer</span>
<span> | </span>
<a href='https://github.com/TCLRainbow/RbxTBRnd/issues/new?labels=enhancement&template=new-tower-map.md'>Missing towers/maps?</a>
</div>
<hr>
<p>Normal towers:</p>
<table id='normal-towers'>
<tr>
<td><button onclick="flipTower(event, 0, 0)">Scout</button></td>
<td><button onclick="flipTower(event, 0, 1)">Fragger</button></td>
<td><button onclick="flipTower(event, 0, 2)">Sniper</button></td>
<td><button onclick="flipTower(event, 0, 3)">Shotgunner</button></td>
<td><button onclick="flipTower(event, 0, 4)">Cryo gunner</button></td>
<td><button onclick="flipTower(event, 0, 5)">Farm</button></td>
<td><button onclick="flipTower(event, 0, 6)">Soldier</button></td>
<td><button onclick="flipTower(event, 0, 7)">Tuber</button></td>
<td><button onclick="flipTower(event, 0, 8)">Mortar</button></td>
<td><button onclick="flipTower(event, 0, 9)">Patrol</button></td>
<td><button onclick="flipTower(event, 0, 10)">Enforcer</button></td>
<td><button onclick="flipTower(event, 0, 11)">Barracks</button></td>
<td><button onclick="flipTower(event, 0, 12)">Aviator</button></td>
<td><button onclick="flipTower(event, 0, 13)">Flamethrower</button></td>
<td><button onclick="flipTower(event, 0, 14)">Mercenary</button></td>
<td><button onclick="flipTower(event, 0, 15)">Marksman</button></td>
</tr>
<tr>
<td><button onclick="flipTower(event, 1, 0)">Commando</button></td>
<td><button onclick="flipTower(event, 1, 1)">Commander</button></td>
<td><button onclick="flipTower(event, 1, 2)">Anarchist</button></td>
<td><button onclick="flipTower(event, 1, 3)">DJ</button></td>
<td><button onclick="flipTower(event, 1, 4)">Railgunner</button></td>
<td><button onclick="flipTower(event, 1, 5)">Plasma Trooper</button></td>
<td><button onclick="flipTower(event, 1, 6)">Phaser</button></td>
<td><button onclick="flipTower(event, 1, 7)">Zed</button></td>
</tr>
</table>
<p>Event towers:</p>
<table id='event-towers'>
<tr>
<td><button onclick="flipTower(event, 0, 0, 1)">Tweeter</button></td>
<td><button onclick="flipTower(event, 0, 1, 1)">Scare crow</button></td>
<td><button onclick="flipTower(event, 0, 2, 1)">Elf</button></td>
<td><button onclick="flipTower(event, 0, 3, 1)">Hallowboomer</button></td>
<td><button onclick="flipTower(event, 0, 4, 1)">Sleeter</button></td>
<td><button onclick="flipTower(event, 0, 5, 1)">Resting Soldier</button></td>
<td><button onclick="flipTower(event, 0, 6, 1)">Graveyard</button></td>
<td><button onclick="flipTower(event, 0, 7, 1)">Snowballer</button></td>
<td><button onclick="flipTower(event, 0, 8, 1)">Monkey</button></td>
<td><button onclick="flipTower(event, 0, 9, 1)">Harpoon Hunter</button></td>
<td><button onclick="flipTower(event, 0, 10, 1)">Patrioteer</button></td>
</tr>
</table>
<p>Trophy towers:</p>
<table id='trophy-towers'>
<tr>
<td><button onclick="flipTower(event, 0, 0, 2)">Golden Scout</button></td>
<td><button onclick="flipTower(event, 0, 1, 2)">Golden Commando</button></td>
</tr>
</table>
<hr>
<button onclick='genTowers()'>Generate random towers</button>
<p id='towers'></p>
<div id="log">
Last edited: Jul 14 2022
<ul>
<li>Added Patrioteer tower</li>
<li>Added Sunsetbay Harbor map</li>
<li>Added this changelog lol</li>
</ul>
</div>