mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-29 03:21:42 +00:00
28 lines
1001 B
Plaintext
28 lines
1001 B
Plaintext
/obj/item/weapon/material/twohanded/baseballbat
|
|
name = "bat"
|
|
desc = "HOME RUN!"
|
|
icon_state = "metalbat0"
|
|
base_icon = "metalbat"
|
|
item_state = "metalbat"
|
|
throwforce = 7
|
|
attack_verb = list("smashed", "beaten", "slammed", "smacked", "struck", "battered", "bonked")
|
|
hitsound = 'sound/weapons/genhit3.ogg'
|
|
default_material = "wood"
|
|
force_divisor = 1.1 // 22 when wielded with weight 20 (steel)
|
|
unwielded_force_divisor = 0.7 // 15 when unwielded based on above.
|
|
|
|
//Predefined materials go here.
|
|
/obj/item/weapon/material/twohanded/baseballbat/metal/New(var/newloc)
|
|
..(newloc,"steel")
|
|
|
|
/obj/item/weapon/material/twohanded/baseballbat/uranium/New(var/newloc)
|
|
..(newloc,"uranium")
|
|
|
|
/obj/item/weapon/material/twohanded/baseballbat/gold/New(var/newloc)
|
|
..(newloc,"gold")
|
|
|
|
/obj/item/weapon/material/twohanded/baseballbat/platinum/New(var/newloc)
|
|
..(newloc,"platinum")
|
|
|
|
/obj/item/weapon/material/twohanded/baseballbat/diamond/New(var/newloc)
|
|
..(newloc,"diamond") |