feat(npc): add preset unit helper to retrieve npc from 1.13c map data
This commit is contained in:
43
pkg/data/monplace/monplace.go
Normal file
43
pkg/data/monplace/monplace.go
Normal file
@@ -0,0 +1,43 @@
|
||||
package monplace
|
||||
|
||||
type ID int
|
||||
|
||||
const (
|
||||
nothing ID = iota
|
||||
npc_pack
|
||||
unique_pack
|
||||
champion
|
||||
rogue_warner
|
||||
bloodraven
|
||||
rivermonster_right
|
||||
rivermonster_left
|
||||
tightspotboss
|
||||
amphibian
|
||||
tentacle_ns
|
||||
tentacle_ew
|
||||
fallennest
|
||||
fetishnest
|
||||
talkingrogue
|
||||
talkingguard
|
||||
dumbguard
|
||||
fallen
|
||||
fallenshaman
|
||||
maggot
|
||||
maggotegg
|
||||
mosquitonest
|
||||
fetish
|
||||
fetishshaman
|
||||
impgroup
|
||||
imp
|
||||
miniongroup
|
||||
minion
|
||||
bloodlord
|
||||
deadminion
|
||||
deadimp
|
||||
deadbarb
|
||||
reanimateddead
|
||||
group25
|
||||
group50
|
||||
group75
|
||||
group100
|
||||
)
|
||||
Reference in New Issue
Block a user