Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SlimeStaffConditionSetter.cs
Go to the documentation of this file.
2
4{
5 private int _timesToRun;
6
7 public SlimeStaffConditionSetter(int timesToRunMultiplier)
8 {
9 _timesToRun = timesToRunMultiplier;
10 }
11
13 {
14 switch (info.npcVictim.netID)
15 {
16 default:
17 return 0;
18 case -33:
19 case -32:
20 case -10:
21 case -9:
22 case -8:
23 case -7:
24 case -6:
25 case -5:
26 case -4:
27 case -3:
28 case 1:
29 case 16:
30 case 138:
31 case 141:
32 case 147:
33 case 184:
34 case 187:
35 case 204:
36 case 302:
37 case 333:
38 case 334:
39 case 335:
40 case 336:
41 case 433:
42 case 535:
43 case 537:
44 return _timesToRun;
45 }
46 }
47
48 public void Setup(SimulatorInfo info)
49 {
50 }
51
52 public void TearDown(SimulatorInfo info)
53 {
54 }
55}