forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
del: thermal suit. override: plush toy loadout datum in LOADOUT_ITEMS module. add: polychromic cloak as an resomi hooded cloak; resomi plush added to "plush toy" loadout datum; resomi undercoats and expeditionary uniforms added to "Xenowear" loadout cat.
- Loading branch information
Showing
4 changed files
with
113 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
/datum/gear | ||
var/list/allowed_factions //Background factions required to spawn with this item. | ||
|
||
/datum/gear/plush_toy | ||
var/list/toy_list = list( | ||
"diona nymph plush" = /obj/item/toy/plushie/nymph | ||
"mouse plush" = /obj/item/toy/plushie/mouse | ||
"kitten plush" = /obj/item/toy/plushie/kitten | ||
"lizard plush" = /obj/item/toy/plushie/lizard | ||
"crow plush" = /obj/item/toy/plushie/crow | ||
"spider plush" = /obj/item/toy/plushie/spider | ||
"farwa plush" = /obj/item/toy/plushie/farwa | ||
"golden carp plush" = /obj/item/toy/plushie/carp_gold | ||
"purple carp plush" = /obj/item/toy/plushie/carp_purple | ||
"pink carp plush" = /obj/item/toy/plushie/carp_pink | ||
"corgi plush" = /obj/item/toy/plushie/corgi | ||
"corgi plush with bow" = /obj/item/toy/plushie/corgi_bow | ||
"deer plush" = /obj/item/toy/plushie/deer | ||
"blue squid plush" = /obj/item/toy/plushie/squid_blue | ||
"orange squid plush" = /obj/item/toy/plushie/squid_orange | ||
) | ||
|
||
/datum/gear/plush_toy/New() | ||
gear_tweaks += gear_tweak_free_name(display_name) | ||
gear_tweaks += gear_tweak_free_desc(description) | ||
var/list/completed_list | ||
for(var/plush_name in toy_list) | ||
completed_list[plush_name] = toy_list[plush_name] | ||
gear_tweaks += new /datum/gear_tweak/path(completed_list) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters