mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-08 07:52:54 +00:00
* Ninja Equipment Fixes (#55240) Fixes an issue with space ninja not gaining speed in some issues on suit initialization. Also finally fixes the issue of space ninja cooldowns Both of these are issues with Space Ninja and should be fixed so the antag can function properly. * Ninja Equipment Fixes Co-authored-by: IndieanaJones <47086570+IndieanaJones@users.noreply.github.com>
25 lines
865 B
Plaintext
25 lines
865 B
Plaintext
/**
|
|
* # Ninja Shoes
|
|
*
|
|
* Space ninja's shoes. Gives him armor on his feet.
|
|
*
|
|
* Space ninja's ninja shoes. How mousey. Gives him slip protection and protection against attacks.
|
|
* Also are temperature resistant.
|
|
*
|
|
*/
|
|
/obj/item/clothing/shoes/space_ninja
|
|
name = "ninja shoes"
|
|
desc = "A pair of running shoes. Excellent for running and even better for smashing skulls."
|
|
icon_state = "s-ninja"
|
|
inhand_icon_state = "secshoes"
|
|
permeability_coefficient = 0.01
|
|
clothing_flags = NOSLIP
|
|
resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|
|
armor = list(MELEE = 40, BULLET = 30, LASER = 20,ENERGY = 15, BOMB = 30, BIO = 30, RAD = 30, FIRE = 100, ACID = 100)
|
|
strip_delay = 120
|
|
cold_protection = FEET
|
|
min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT
|
|
heat_protection = FEET
|
|
max_heat_protection_temperature = SHOES_MAX_TEMP_PROTECT
|
|
slowdown = -1
|