mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
[MIRROR] Baseball bats have a 1% chance to be deformed on creation (#425)
* Baseball bats have a 1% chance to be deformed on creation (#53051) * Baseball bats have a 1% chance to be deformed on creation Co-authored-by: Wallemations <66052067+Wallemations@users.noreply.github.com>
This commit is contained in:
co-authored by
Wallemations
parent
aea7eb5fa5
commit
021551e666
@@ -609,6 +609,14 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301
|
||||
var/homerun_ready = 0
|
||||
var/homerun_able = 0
|
||||
|
||||
/obj/item/melee/baseball_bat/Initialize()
|
||||
. = ..()
|
||||
if(prob(1))
|
||||
name = "cricket bat"
|
||||
desc = "You've got red on you."
|
||||
icon_state = "baseball_bat_brit"
|
||||
inhand_icon_state = "baseball_bat_brit"
|
||||
|
||||
/obj/item/melee/baseball_bat/homerun
|
||||
name = "home run bat"
|
||||
desc = "This thing looks dangerous... Dangerously good at baseball, that is."
|
||||
|
||||
Reference in New Issue
Block a user