diff --git a/code/game/objects/items/grenades/smokebomb.dm b/code/game/objects/items/grenades/smokebomb.dm index 1c64a349d00..371df2167c1 100644 --- a/code/game/objects/items/grenades/smokebomb.dm +++ b/code/game/objects/items/grenades/smokebomb.dm @@ -10,8 +10,25 @@ icon_state = "smokewhite" inhand_icon_state = "smoke" slot_flags = ITEM_SLOT_BELT - ///It's extremely important to keep this list up to date. It helps to generate the insightful description of the smokebomb - var/static/list/bruh_moment = list("Dank", "Hip", "Lit", "Based", "Robust", "Bruh", "Gamer") + ///List of words we take randomly every time we're examined. It's extremely important to keep this list up to date, + ///It helps to generate the insightful description of the smokebomb + var/static/list/bruh_moment = list( + "Dank", + "Hip", + "Lit", + "Based", + "Robust", + "Bruh", + "Gamer", + "Sigma", + "Blud", + "Fanum", + "Gyatt", + "Looksmaxxing", + "Mewing", + "Aura", + "Crashout", + ) ///Here we generate the extremely insightful description. /obj/item/grenade/smokebomb/Initialize(mapload)