-
Notifications
You must be signed in to change notification settings - Fork 3
/
TerrariaEnums.cs
86 lines (81 loc) · 2 KB
/
TerrariaEnums.cs
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
80
81
82
83
84
85
86
using System;
namespace LiveSplit.Terraria {
public static class TerrariaEnums {
public static string ItemName(int value) => Enum.GetName(typeof(EItems), value);
public static string NpcName(int value) => Enum.GetName(typeof(ENpcs), value);
}
public enum EBosses {
//Wall of Flesh
EyeofCthulhu,
EaterofWorldsBrainofCthulhu,
Skeletron,
QueenBee,
KingSlime,
//_GoblinArmy,
//_FrostLegion,
//_PirateInvasion,
//_SolarEclipse,
Plantera,
Golem,
//_MartianSaucer,
DukeFishron,
//_MourningWood,
//_Pumpking,
//_IceQueen,
//_Everscream,
//_SantaNK1,
LunaticCultist,
MoonLord,
SolarPillar,
VortexPillar,
NebulaPillar,
StardustPillar,
EmpressofLight,
QueenSlime,
Deerclops,
TheDestroyer,
TheTwins,
SkeletronPrime
}
public enum EItems {
LightsBane = 46,
HermesBoots = 54,
PlatinumCoin = 74,
Musket = 96,
MusketBall = 97,
FieryGreatsword = 121,
MoltenPickaxe = 122,
Muramasa = 155,
Grenade = 168,
BladeofGrass = 190,
Bed = 224,
NightsEdge = 273,
MythrilAnvil = 525,
Shotgun = 534,
Jetpack = 748,
TerraBlade = 757,
BloodButcherer = 795,
TheUndertaker = 800,
Boomstick = 964,
OrichalcumAnvil = 1220,
ChlorophyteShotbow = 1229,
FlurryBoots = 1579,
TheHorsemansBlade = 1826,
TruffleWorm = 2673,
InfluxWaver = 2880,
SailfishBoots = 3200,
DuneriderBoots = 4055,
MagicConch = 4263,
GoatSkull = 4795,
Zenith = 4956,
GelatinCrystal = 4988,
TorchGodsFavor = 5043,
BeeHive = 5066,
}
public enum ENpcs {
Merchant = 17,
Nurse = 18,
ArmsDealer = 19,
Demolitionist = 38,
}
}