mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 15:45:05 +01:00
6618c9d694
## About The Pull Request Purged several files inthe theme of misc.dm and broken the contents out into better organised files. Incidentally done some minor cleanup by removing an unused global list referring to a string file that no-longer exists, and removing a useless proc that replicated the behaviour of file2list(). ## Why It's Good For The Game See #60358 and all its successors ## Changelog 🆑 code: Reduced the number of files named misc.dm or similar by 14%. /🆑 # Conflicts: # code/_globalvars/lists/flavor_misc.dm
60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
/// Stores the ghost forms that support directional sprites
|
|
GLOBAL_LIST_INIT(ghost_forms_with_directions_list, list(
|
|
"catghost",
|
|
"ghost_black",
|
|
"ghost_blazeit",
|
|
"ghost_blue",
|
|
"ghost_camo",
|
|
"ghost_cyan",
|
|
"ghost_dblue",
|
|
"ghost_dcyan",
|
|
"ghost_dgreen",
|
|
"ghost_dpink",
|
|
"ghost_dred",
|
|
"ghost_dyellow",
|
|
"ghost_fire",
|
|
"ghost_funkypurp",
|
|
"ghost_green",
|
|
"ghost_grey",
|
|
"ghost_mellow",
|
|
"ghost_pink",
|
|
"ghost_pinksherbert",
|
|
"ghost_purpleswirl",
|
|
"ghost_rainbow",
|
|
"ghost_red",
|
|
"ghost_yellow",
|
|
"ghost",
|
|
"ghostian",
|
|
"ghostian2",
|
|
"ghostking",
|
|
"skeleghost",
|
|
))
|
|
|
|
/// Stores the ghost forms that support hair and other such things
|
|
GLOBAL_LIST_INIT(ghost_forms_with_accessories_list, list(
|
|
"ghost_black",
|
|
"ghost_blazeit",
|
|
"ghost_blue",
|
|
"ghost_camo",
|
|
"ghost_cyan",
|
|
"ghost_dblue",
|
|
"ghost_dcyan",
|
|
"ghost_dgreen",
|
|
"ghost_dpink",
|
|
"ghost_dred",
|
|
"ghost_dyellow",
|
|
"ghost_fire",
|
|
"ghost_funkypurp",
|
|
"ghost_green",
|
|
"ghost_grey",
|
|
"ghost_mellow",
|
|
"ghost_pink",
|
|
"ghost_pinksherbert",
|
|
"ghost_purpleswirl",
|
|
"ghost_rainbow",
|
|
"ghost_red",
|
|
"ghost_yellow",
|
|
"ghost",
|
|
"skeleghost",
|
|
))
|