From 4bb0e06116202042e772d6893af4e60a74d77c19 Mon Sep 17 00:00:00 2001 From: Flint Date: Sat, 18 Jan 2020 22:16:51 -0600 Subject: [PATCH] DUCKS WORK! --- code/game/objects/structures/watercloset.dm | 3 +++ code/modules/research/designs/misc_designs.dm | 14 ++++++++++++-- code/modules/research/techweb/all_nodes.dm | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index 69cc2b182e6..5bd94144645 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -235,6 +235,9 @@ icon_state = "rubberducky" item_state = "rubberducky" +/obj/item/bikehorn/rubberducky/plasticducky + name = "plastic ducky" + desc = "It appears to be a cheap plastic knockoff of a loveable bathtime toy." /obj/structure/sink name = "sink" diff --git a/code/modules/research/designs/misc_designs.dm b/code/modules/research/designs/misc_designs.dm index 09fd097d37e..2f218b9cbe4 100644 --- a/code/modules/research/designs/misc_designs.dm +++ b/code/modules/research/designs/misc_designs.dm @@ -275,7 +275,7 @@ build_path = /obj/item/tank/internals/plasma/empty category = list("Equipment") departmental_flags = DEPARTMENTAL_FLAG_ENGINEERING | DEPARTMENTAL_FLAG_SCIENCE - + /datum/design/id name = "Identification Card" desc = "A card used to provide ID and determine access across the station." @@ -284,7 +284,17 @@ materials = list(/datum/material/iron=200, /datum/material/glass = 100) build_path = /obj/item/card/id category = list("Electronics") - departmental_flags = DEPARTMENTAL_FLAG_SERVICE + departmental_flags = DEPARTMENTAL_FLAG_SERVICE + +/datum/design/plasticducky + name = "Rubber Ducky" + desc = "The classic Nanotracen design for competitively priced bath based duck toys. No need for fancy Waffle co. rubber, buy Plastic Ducks today!" + id = "plasticducky" + build_type = PROTOLATHE + materials = list(/datum/material/plastic = 1000) + build_path = /obj/item/bikehorn/rubberducky/plasticducky + category = list("Equipment") + departmental_flags = DEPARTMENTAL_FLAG_ALL ///////////////////////////////////////// ////////////Janitor Designs////////////// diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index e0491e6fad5..c2d39d07994 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -385,7 +385,7 @@ display_name = "Clown Technology" description = "Honk?!" prereq_ids = list("base") - design_ids = list("air_horn", "honker_main", "honker_peri", "honker_targ", "honk_chassis", "honk_head", "honk_torso", "honk_left_arm", "honk_right_arm", + design_ids = list("air_horn", "plasticducky", "honker_main", "honker_peri", "honker_targ", "honk_chassis", "honk_head", "honk_torso", "honk_left_arm", "honk_right_arm", "honk_left_leg", "honk_right_leg", "mech_banana_mortar", "mech_mousetrap_mortar", "mech_honker", "mech_punching_face", "implant_trombone", "borg_transform_clown") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500) export_price = 5000