-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 943 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test</title>
</head>
<body>
<script type="module">
import init, { simulate } from './pkg/stacklands_combat_simulator.js';
async function run() {
await init();
const swordsmen = {
hp: 7,
attack_speed: 15,
hit_chance: 0.9,
min_damage: 2,
max_damage: 2,
};
const demon_lord = {
hp: 666,
attack_speed: 15,
hit_chance: 0.75,
min_damage: 1,
max_damage: 3,
};
const villagers = Array(8).fill(swordsmen);
const enemies = [demon_lord];
console.log(simulate(1000, villagers, enemies, 60, 90));
}
run();
</script>
</body>
</html>