Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetEmotesBosses()

List< int > Terraria.GameContent.UI.States.UIEmotesMenu.GetEmotesBosses ( )
inlineprivate

Definition at line 178 of file UIEmotesMenu.cs.

179 {
180 List<int> list = new List<int>();
181 if (NPC.downedBoss1)
182 {
183 list.Add(39);
184 }
185 if (NPC.downedBoss2)
186 {
187 list.Add(40);
188 list.Add(41);
189 }
190 if (NPC.downedSlimeKing)
191 {
192 list.Add(51);
193 }
194 if (NPC.downedDeerclops)
195 {
196 list.Add(150);
197 }
198 if (NPC.downedQueenBee)
199 {
200 list.Add(42);
201 }
202 if (NPC.downedBoss3)
203 {
204 list.Add(43);
205 }
206 if (Main.hardMode)
207 {
208 list.Add(44);
209 }
210 if (NPC.downedQueenSlime)
211 {
212 list.Add(144);
213 }
214 if (NPC.downedMechBoss1)
215 {
216 list.Add(45);
217 }
218 if (NPC.downedMechBoss3)
219 {
220 list.Add(46);
221 }
222 if (NPC.downedMechBoss2)
223 {
224 list.Add(47);
225 }
226 if (NPC.downedPlantBoss)
227 {
228 list.Add(48);
229 }
230 if (NPC.downedGolemBoss)
231 {
232 list.Add(49);
233 }
234 if (NPC.downedFishron)
235 {
236 list.Add(50);
237 }
238 if (NPC.downedEmpressOfLight)
239 {
240 list.Add(143);
241 }
242 if (NPC.downedAncientCultist)
243 {
244 list.Add(52);
245 }
246 if (NPC.downedMoonlord)
247 {
248 list.Add(53);
249 }
250 if (NPC.downedHalloweenTree)
251 {
252 list.Add(54);
253 }
254 if (NPC.downedHalloweenKing)
255 {
256 list.Add(55);
257 }
258 if (NPC.downedChristmasTree)
259 {
260 list.Add(56);
261 }
262 if (NPC.downedChristmasIceQueen)
263 {
264 list.Add(57);
265 }
266 if (NPC.downedChristmasSantank)
267 {
268 list.Add(58);
269 }
270 if (NPC.downedPirates)
271 {
272 list.Add(59);
273 }
274 if (NPC.downedMartians)
275 {
276 list.Add(60);
277 }
279 {
280 list.Add(133);
281 }
282 return list;
283 }

References Terraria.NPC.downedAncientCultist, Terraria.NPC.downedBoss1, Terraria.NPC.downedBoss2, Terraria.NPC.downedBoss3, Terraria.NPC.downedChristmasIceQueen, Terraria.NPC.downedChristmasSantank, Terraria.NPC.downedChristmasTree, Terraria.NPC.downedDeerclops, Terraria.NPC.downedEmpressOfLight, Terraria.NPC.downedFishron, Terraria.NPC.downedGolemBoss, Terraria.NPC.downedHalloweenKing, Terraria.NPC.downedHalloweenTree, Terraria.GameContent.Events.DD2Event.DownedInvasionAnyDifficulty, Terraria.NPC.downedMartians, Terraria.NPC.downedMechBoss1, Terraria.NPC.downedMechBoss2, Terraria.NPC.downedMechBoss3, Terraria.NPC.downedMoonlord, Terraria.NPC.downedPirates, Terraria.NPC.downedPlantBoss, Terraria.NPC.downedQueenBee, Terraria.NPC.downedQueenSlime, Terraria.NPC.downedSlimeKing, Terraria.Main.hardMode, and System.list.

Referenced by Terraria.GameContent.UI.States.UIEmotesMenu.InitializePage().