From 6dcadd97c030a4141a304bb76ff699512ab4c628 Mon Sep 17 00:00:00 2001 From: TheDavestDave <30513964+TheDavestDave@users.noreply.github.com> Date: Thu, 17 Feb 2022 15:14:18 +0000 Subject: [PATCH] primative-shields a primitive shield, perfect for the next knights at castle mystic event. it's much less cool, there's no metal ones. but it's literally the only low tech shield in our code right. No really all other shields are made of plastic like the riot shield, or energy like halo jackles. anyway it has 10 lower block chance than the explo shield and 20 less than riot. It's planks off wood and a bucket tied together --- code/datums/components/crafting/recipes/weapons.dm | 8 ++++++++ code/game/objects/items/weapons/shields_vr.dm | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/code/datums/components/crafting/recipes/weapons.dm b/code/datums/components/crafting/recipes/weapons.dm index 6baa4b5e9bf..0470d80a227 100644 --- a/code/datums/components/crafting/recipes/weapons.dm +++ b/code/datums/components/crafting/recipes/weapons.dm @@ -48,3 +48,11 @@ time = 40 category = CAT_WEAPONRY subcategory = CAT_AMMO + +/datum/crafting_recipe/primitive_shield + name = "Primitive Shield" + result = /obj/item/weapon/shield/primitive + reqs = list(list(/obj/item/stack/material/wood = 2), list(/obj/item/weapon/reagent_containers/glass/bucket =1), list(/obj/item/weapon/handcuffs/cable = 2)) + time = 120 + category = CAT_WEAPONRY + subcategory = CAT_WEAPON diff --git a/code/game/objects/items/weapons/shields_vr.dm b/code/game/objects/items/weapons/shields_vr.dm index 514ecd15c92..d342779e8d5 100644 --- a/code/game/objects/items/weapons/shields_vr.dm +++ b/code/game/objects/items/weapons/shields_vr.dm @@ -92,3 +92,10 @@ icon_state = "explorer_shield_P_lighted" else icon_state = "explorer_shield_P" + +/obj/item/weapon/shield/primitive + name = "primitive shield" + desc = "A defensive object that is little more than planks strapped your arm" + icon = 'icons/obj/weapons.dmi' + icon_state = "buckler" + base_block_chance = 30