Skip to content

Commit

Permalink
[MIRROR] Resprites the Blade Heretic knives. (#2543)
Browse files Browse the repository at this point in the history
* Resprites the Blade Heretic knives. (#83207)

## About The Pull Request

Changes the sprites on the action button for furious steel, and orbiting
knives for Blade Heretic in general.

## Why It's Good For The Game

![Blade Heretic
Resprite](https://github.com/tgstation/tgstation/assets/102721711/22c4cf37-8bd0-494e-804e-34bea909594f)


Kitchen utensils are kind of a lame fit for an eldritch acolyte, now
they look like proper throwing knives.

## Changelog

:cl:
Image: Blade Heretic Knives have been resprited into proper throwing
knives.
/:cl:

* Resprites the Blade Heretic knives.

---------

Co-authored-by: EnterTheJake <[email protected]>
Co-authored-by: NovaBot13 <[email protected]>
  • Loading branch information
3 people authored and StealsThePRs committed May 18, 2024
1 parent d26e3ce commit b0e62dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions code/modules/antagonists/heretic/knife_effect.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// "Floating ghost blade" effect for blade heretics
/obj/effect/floating_blade
name = "knife"
icon = 'icons/obj/service/kitchen.dmi'
icon_state = "knife"
icon = 'icons/effects/eldritch.dmi'
icon_state = "dio_knife"
layer = LOW_MOB_LAYER
/// The color the knife glows around it.
var/glow_color = "#ececff"
Expand All @@ -11,4 +11,4 @@
. = ..()
AddElement(/datum/element/movetype_handler)
ADD_TRAIT(src, TRAIT_MOVE_FLYING, INNATE_TRAIT)
add_filter("knife", 2, list("type" = "outline", "color" = glow_color, "size" = 1))
add_filter("dio_knife", 2, list("type" = "outline", "color" = glow_color, "size" = 1))
6 changes: 3 additions & 3 deletions code/modules/antagonists/heretic/magic/furious_steel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@

/obj/projectile/floating_blade
name = "blade"
icon = 'icons/obj/service/kitchen.dmi'
icon_state = "knife"
icon = 'icons/effects/eldritch.dmi'
icon_state = "dio_knife"
speed = 2
damage = 25
armour_penetration = 100
Expand All @@ -109,7 +109,7 @@

/obj/projectile/floating_blade/Initialize(mapload)
. = ..()
add_filter("knife", 2, list("type" = "outline", "color" = "#f8f8ff", "size" = 1))
add_filter("dio_knife", 2, list("type" = "outline", "color" = "#f8f8ff", "size" = 1))

/obj/projectile/floating_blade/prehit_pierce(atom/hit)
if(isliving(hit) && isliving(firer))
Expand Down
Binary file modified icons/effects/eldritch.dmi
Binary file not shown.
Binary file modified icons/mob/actions/actions_ecult.dmi
Binary file not shown.

0 comments on commit b0e62dd

Please sign in to comment.