-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Добавлен хеллоуинский декор с 220. Папье-маше и мишура * Добавлен хеллоуинский декор с 220. Папье-маше и мишура * Очепятка * Update tgstation.dme --------- Co-authored-by: Yaroslav Nurkov <[email protected]>
- Loading branch information
1 parent
cd28bdf
commit 8abc668
Showing
4 changed files
with
103 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/datum/crafting_recipe/papier_pumpkin | ||
name = "Pumpkin Papier Mache" | ||
result = /obj/item/decoration/halloween/pumpkin | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 3, /obj/item/stack/sticky_tape = 2) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/papier_cauldron | ||
name = "Cauldron Papier Mache" | ||
result = /obj/item/decoration/halloween/cauldron | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 4, /obj/item/stack/sticky_tape = 4) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/papier_skeleton | ||
name = "Skeleton Papier Mache" | ||
result = /obj/item/decoration/halloween/skeleton | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 2, /obj/item/stack/sticky_tape = 2) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/papier_skull | ||
name = "Skull Papier Mache" | ||
result = /obj/item/decoration/halloween/skull | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 3, /obj/item/stack/sticky_tape = 3) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/papier_ghost | ||
name = "Ghost Papier Mache" | ||
result = /obj/item/decoration/halloween/ghost | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 2, /obj/item/stack/sticky_tape = 1) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/papier_spider | ||
name = "Spider Papier Mache" | ||
result = /obj/item/decoration/halloween/spider | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 5, /obj/item/stack/sticky_tape = 5) | ||
category = CAT_ENTERTAINMENT | ||
|
||
/datum/crafting_recipe/tinsel_halloween | ||
name = "Halloween Tinsel" | ||
result = /obj/item/decoration/tinsel/halloween | ||
time = 6 SECONDS | ||
tool_behaviors = list(TOOL_WIRECUTTER) | ||
reqs = list(/obj/item/paper = 5, /obj/item/stack/cable_coil = 3) | ||
category = CAT_ENTERTAINMENT |
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Предмет - инициализатор категории. Не должен появится на сервере. Если вдруг появился, пишите в лс delingar | ||
/obj/item/decoration/ | ||
name = "papier mache" | ||
desc = "OOPS! Something went wrong. Report to delingar in Discord." | ||
icon = 'tff_modular/modules/halloween-decor/halloween-decor.dmi' | ||
icon_state = "debug" | ||
inhand_icon_state = null | ||
throwforce = 0 | ||
throw_speed = 3 | ||
throw_range = 2 | ||
force = 0 | ||
|
||
/obj/item/decoration/halloween/pumpkin | ||
name = "Paper Pumpkin" | ||
desc = "Orange papier mache, looks like pumpkin. Happy Halloween!" | ||
icon_state = "pumpkin" | ||
|
||
/obj/item/decoration/halloween/cauldron | ||
name = "Paper Cauldron" | ||
desc = "Black papier mache, looks like witch's cauldron. Not real cauldron. Happy Halloween!" | ||
icon_state = "cauldron" | ||
|
||
/obj/item/decoration/halloween/skeleton | ||
name = "Paper Skeleton" | ||
desc = "White papier mache, that looks like small skeleton. There's no real bones, hungry vulp. Happy Halloween!" | ||
icon_state = "skeleton" | ||
|
||
/obj/item/decoration/halloween/skull | ||
name = "Paper Skull" | ||
desc = "White-black papier mache, that looks like skull. Don't worry, it's not real. Happy Halloween!" | ||
icon_state = "skull" | ||
|
||
/obj/item/decoration/halloween/ghost | ||
name = "Paper Ghost" | ||
desc = "White-black papier mache, looks like ghost. Hide your holy water, chaplain, it's not real! Happy Halloween!" | ||
icon_state = "ghost" | ||
|
||
/obj/item/decoration/halloween/spider | ||
name = "Paper Spider" | ||
desc = "Black papier mache, that looks like small spider. It's not real, don't try to get spider's skills! Happy Halloween!" | ||
icon_state = "spider" | ||
|
||
/obj/item/decoration/tinsel/halloween | ||
name = "Halloween Tinsel" | ||
desc = "Black-orange tinsel to make your party more spooky. Happy Halloween!" | ||
icon_state = "tinsel" |
Binary file not shown.
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