From 2457fca12a422ecf2f5d91970abc25166dcd2d8d Mon Sep 17 00:00:00 2001 From: Nicaragua Date: Sun, 27 Jan 2019 05:16:44 -0300 Subject: [PATCH] added toy version removed crafting recipe for griefsky aprenttice --- code/modules/crafting/recipes.dm | 13 ------------- .../mob/living/simple_animal/bot/griefsky.dm | 17 +++++++++++++++-- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index b96d9ef2d59..771ca82d69e 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -94,19 +94,6 @@ time = 120 category = CAT_ROBOT -/datum/crafting_recipe/jgriefsky - name = "Griefsky apprentice" - result = /mob/living/simple_animal/bot/griefsky/jgriefsky - reqs = list(/obj/item/assembly/signaler = 1, - /obj/item/clothing/head/helmet = 1, - /obj/item/pen/edagger = 4, - /obj/item/assembly/prox_sensor = 1, - /obj/item/robot_parts/r_arm = 2, - /obj/item/robot_parts/l_arm = 2) - tools = list(/obj/item/weldingtool) - time = 120 - category = CAT_ROBOT - /datum/crafting_recipe/cleanbot name = "Cleanbot" result = /mob/living/simple_animal/bot/cleanbot diff --git a/code/modules/mob/living/simple_animal/bot/griefsky.dm b/code/modules/mob/living/simple_animal/bot/griefsky.dm index d5bc92b8ae0..d4e87ccc5c2 100644 --- a/code/modules/mob/living/simple_animal/bot/griefsky.dm +++ b/code/modules/mob/living/simple_animal/bot/griefsky.dm @@ -68,7 +68,17 @@ health = 100 maxHealth = 100 weapon = /obj/item/pen/edagger - + +/mob/living/simple_animal/bot/griefsky/griefsky/toy //A toy version of general griefsky! + name = "Genewul Bweepskee" + desc = "An adorable looking secbot with four toy swords taped to its arms" + health = 50 + maxHealth = 50 + dmg = 0 + block_chance_melee = 0 + block_chance_ranged = 0 + bot_core_type = /obj/machinery/bot_core/toy + /mob/living/simple_animal/bot/griefsky/turn_on() ..() icon_state = "[base_icon][on]" @@ -381,4 +391,7 @@ Auto Patrol: []"}, ..() /obj/machinery/bot_core/secbot - req_access = list(access_security) \ No newline at end of file + req_access = list(access_security) + +/obj/machinery/bot_core/toy + req_access = list(access_maint_tunnels, access_theatre, access_robotics) \ No newline at end of file