baseball bat
This commit is contained in:
@@ -251,7 +251,8 @@
|
|||||||
var/list/holy_weapons_list = typesof(/obj/item/nullrod) + list(
|
var/list/holy_weapons_list = typesof(/obj/item/nullrod) + list(
|
||||||
/obj/item/twohanded/dualsaber/hypereutactic/chaplain,
|
/obj/item/twohanded/dualsaber/hypereutactic/chaplain,
|
||||||
/obj/item/gun/energy/laser/redtag/hitscan/chaplain,
|
/obj/item/gun/energy/laser/redtag/hitscan/chaplain,
|
||||||
/obj/item/multitool/chaplain
|
/obj/item/multitool/chaplain,
|
||||||
|
/obj/item/melee/baseball_bat/chaplain
|
||||||
)
|
)
|
||||||
var/list/display_names = list()
|
var/list/display_names = list()
|
||||||
for(var/V in holy_weapons_list)
|
for(var/V in holy_weapons_list)
|
||||||
|
|||||||
@@ -513,6 +513,19 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301
|
|||||||
var/homerun_able = 0
|
var/homerun_able = 0
|
||||||
total_mass = 2.7 //a regular wooden major league baseball bat weighs somewhere between 2 to 3.4 pounds, according to google
|
total_mass = 2.7 //a regular wooden major league baseball bat weighs somewhere between 2 to 3.4 pounds, according to google
|
||||||
|
|
||||||
|
/obj/item/melee/baseball_bat/chaplain
|
||||||
|
name = "blessed baseball bat"
|
||||||
|
desc = "There ain't a cult in the league that can withstand a swatter."
|
||||||
|
force = 14
|
||||||
|
throwforce = 14
|
||||||
|
obj_flags = UNIQUE_RENAME
|
||||||
|
var/chaplain_spawnable = TRUE
|
||||||
|
total_mass = TOTAL_MASS_MEDIEVAL_WEAPON
|
||||||
|
|
||||||
|
/obj/item/melee/baseball_bat/chaplain/Initialize()
|
||||||
|
. = ..()
|
||||||
|
AddComponent(/datum/component/anti_magic, TRUE, TRUE)
|
||||||
|
|
||||||
/obj/item/melee/baseball_bat/homerun
|
/obj/item/melee/baseball_bat/homerun
|
||||||
name = "home run bat"
|
name = "home run bat"
|
||||||
desc = "This thing looks dangerous... Dangerously good at baseball, that is."
|
desc = "This thing looks dangerous... Dangerously good at baseball, that is."
|
||||||
|
|||||||
Reference in New Issue
Block a user