-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.go
executable file
·39 lines (38 loc) · 865 Bytes
/
data.go
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
package monster
var Monsters = map[string]*Monster{
"01D2HFC5XCDMVHP80ZH44JNHZ4": &Monster{
ID: "01D2HFC5XCDMVHP80ZH44JNHZ4",
Name: "Chupacabra",
Attack: 150,
Defense: 500,
Type: EarthType,
},
"01D2HV4AYW1YK6TGXE2YZ4DQGR": &Monster{
ID: "01D2HV4AYW1YK6TGXE2YZ4DQGR",
Name: "Nessie",
Attack: 10,
Defense: 999,
Type: WaterType,
},
"01D2HV56HKYM349958P5ZSM24Q": &Monster{
ID: "01D2HV56HKYM349958P5ZSM24Q",
Name: "Zombie",
Attack: 300,
Defense: 100,
Type: EarthType,
},
"01D2HV77H0XTA1C5AV317KTNRS": &Monster{
ID: "01D2HV77H0XTA1C5AV317KTNRS",
Name: "Kraken",
Attack: 700,
Defense: 400,
Type: WaterType,
},
"01D2HVBX3NTV5SB34YJH9K7KW9": &Monster{
ID: "01D2HVBX3NTV5SB34YJH9K7KW9",
Name: "Godzilla",
Attack: 999,
Defense: 800,
Type: EarthType,
},
}