Any type of wirecutter can now be used to carve a bucket into a hat. (#9710)

This commit is contained in:
mikomyazaki
2020-08-20 10:28:24 -03:00
committed by GitHub
parent 52045e9495
commit 7039f319fe
2 changed files with 42 additions and 3 deletions
@@ -236,7 +236,6 @@
unacidable = 0
drop_sound = 'sound/items/drop/helm.ogg'
pickup_sound = 'sound/items/pickup/helm.ogg'
var/carving_weapon = /obj/item/wirecutters
var/helmet_type = /obj/item/clothing/head/helmet/bucket
no_shatter = TRUE
fragile = 0
@@ -248,7 +247,7 @@
user.put_in_hands(new /obj/item/bucket_sensor)
qdel(src)
return
else if(istype(D, carving_weapon))
else if(D.iswirecutter())
to_chat(user, "<span class='notice'>You cut a big hole in \the [src] with \the [D].</span>")
user.put_in_hands(new helmet_type)
qdel(src)
@@ -288,7 +287,6 @@
matter = list("wood" = 50)
drop_sound = 'sound/items/drop/wooden.ogg'
pickup_sound = 'sound/items/pickup/wooden.ogg'
carving_weapon = /obj/item/material/hatchet
helmet_type = /obj/item/clothing/head/helmet/bucket/wood
/obj/item/reagent_containers/glass/bucket/wood/attackby(var/obj/D, mob/user as mob)
+41
View File
@@ -0,0 +1,41 @@
################################
# Example Changelog File
#
# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
#
# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
# When it is, any changes listed below will disappear.
#
# Valid Prefixes:
# bugfix
# wip (For works in progress)
# tweak
# soundadd
# sounddel
# rscadd (general adding of nice things)
# rscdel (general deleting of nice things)
# imageadd
# imagedel
# maptweak
# spellcheck (typo fixes)
# experiment
# balance
# admin
# backend
# security
# refactor
#################################
# Your name.
author: mikomyazaki
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
# Any changes you've made. See valid prefix list above.
# INDENT WITH TWO SPACES. NOT TABS. SPACES.
# SCREW THIS UP AND IT WON'T WORK.
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- bugfix: "Any type of wirecutter can now be used to carve a bucket into a hat."