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

◆ GetEmotesBosses()

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

Definition at line 190 of file UIEmotesMenu.cs.

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

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, and Terraria.Main.hardMode.

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

+ Here is the caller graph for this function: