Bats and stuff.
Metal, wood, plasteel variants.
All with varying degrees of robustness.
This commit is contained in:
Meowykins
2014-10-07 01:11:48 -05:00
parent 2d1af3a50d
commit 0f781ed3f3
5 changed files with 43 additions and 1 deletions
@@ -69,6 +69,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \
new/datum/stack_recipe("apc frame", /obj/item/apc_frame, 2), \
new/datum/stack_recipe("air alarm frame", /obj/item/alarm_frame, 2), \
new/datum/stack_recipe("fire alarm frame", /obj/item/firealarm_frame, 2), \
new/datum/stack_recipe("metal bat", /obj/item/weapon/metal_bat, 5), \
null, \
new/datum/stack_recipe("iron door", /obj/structure/mineral_door/iron, 20, one_per_turf = 1, on_floor = 1), \
)
@@ -102,6 +103,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \
*/
var/global/list/datum/stack_recipe/plasteel_recipes = list ( \
new/datum/stack_recipe("AI core", /obj/structure/AIcore, 4, time = 50, one_per_turf = 1), \
new/datum/stack_recipe("plasteel bat", /obj/item/weapon/pla_bat, 5), \
new/datum/stack_recipe("Metal crate", /obj/structure/closet/crate, 10, time = 50, one_per_turf = 1), \
new/datum/stack_recipe("RUST fuel assembly port frame", /obj/item/rust_fuel_assembly_port_frame, 12, time = 50, one_per_turf = 1), \
new/datum/stack_recipe("RUST fuel compressor frame", /obj/item/rust_fuel_compressor_frame, 12, time = 50, one_per_turf = 1), \
@@ -134,6 +136,7 @@ var/global/list/datum/stack_recipe/wood_recipes = list ( \
new/datum/stack_recipe("crossbow frame", /obj/item/weapon/crossbowframe, 5, time = 25, one_per_turf = 0, on_floor = 0), \
new/datum/stack_recipe("wooden door", /obj/structure/mineral_door/wood, 10, time = 20, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("coffin", /obj/structure/closet/coffin, 5, time = 15, one_per_turf = 1, on_floor = 1), \
new/datum/stack_recipe("wooden bat", /obj/item/weapon/wood_bat, 5), \
// new/datum/stack_recipe("apiary", /obj/item/apiary, 10, time = 25, one_per_turf = 0, on_floor = 0)
)
+40 -1
View File
@@ -179,4 +179,43 @@
force = 20
throwforce = 10
w_class = 4 //there ain't no way in fuck you're shuving this inside your rucksack. No way.
attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut")
/obj/item/weapon/metal_bat
desc = "The quality is a swing and a miss."
name = "Metal Bat"
icon_state = "metalbat"
item_state = "bat_l"
force = 15.0
throwforce = 5.0
throw_speed = 5
throw_range = 10
w_class = 3.0
flags = FPRINT | TABLEPASS
attack_verb = list("struck out", "beat", "bludgeoned", "homerunned")
/obj/item/weapon/pla_bat
desc = "The quality is a swing and a miss."
name = "Plasteel Bat"
icon_state = "plabat"
item_state = "bat_l"
force = 20.0
throwforce = 5.0
throw_speed = 5
throw_range = 10
w_class = 3.0
flags = FPRINT | TABLEPASS
attack_verb = list("struck out", "beat", "bludgeoned", "homerunned")
/obj/item/weapon/wood_bat
desc = "The quality is a swing and a miss."
name = "Wooden Bat"
icon_state = "woodbat"
item_state = "bat_l"
force = 10.0
throwforce = 5.0
throw_speed = 5
throw_range = 10
w_class = 3.0
flags = FPRINT | TABLEPASS
attack_verb = list("struck out", "beat", "bludgeoned", "homerunned")