diff --git a/code/game/gamemodes/cult/items/sword.dm b/code/game/gamemodes/cult/items/sword.dm index 78e16f0479e..4376fb236d5 100644 --- a/code/game/gamemodes/cult/items/sword.dm +++ b/code/game/gamemodes/cult/items/sword.dm @@ -2,10 +2,12 @@ name = "eldritch blade" desc = "A sword humming with unholy energy. It glows with a dim red light and looks deadly sharp." desc_antag = "This sword is a powerful weapon, capable of severing limbs easily, if they are targeted. Non-believers are unable to use this weapon." - icon = 'icons/obj/sword.dmi' + icon = 'icons/obj/sword_64.dmi' icon_state = "cultblade" item_state = "cultblade" contained_sprite = TRUE + worn_x_dimension = 64 + worn_y_dimension = 64 force = 25 armor_penetration = 50 // Narsie's blessing is strong. Also needed so the cult isn't obliterated by the average voidsuit with melee resistance. w_class = ITEMSIZE_LARGE diff --git a/html/changelogs/GeneralCamo - New Cult Blade.yml b/html/changelogs/GeneralCamo - New Cult Blade.yml new file mode 100644 index 00000000000..4004db6e4d5 --- /dev/null +++ b/html/changelogs/GeneralCamo - New Cult Blade.yml @@ -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: GeneralCamo, Joan + +# 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: + - rscadd: "Ported new cult blade icons from /tg/station." diff --git a/icons/obj/sword.dmi b/icons/obj/sword.dmi index 9408e17b367..079a9218978 100644 Binary files a/icons/obj/sword.dmi and b/icons/obj/sword.dmi differ diff --git a/icons/obj/sword_64.dmi b/icons/obj/sword_64.dmi new file mode 100644 index 00000000000..5fe0a9584bf Binary files /dev/null and b/icons/obj/sword_64.dmi differ