mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 14:07:51 +01:00
Ports Anti-magic from TG. (#27560)
* the rest of the fucking owl * OK hands need work but otherwise good * fuck time out fix vampire after * temporary codersprite do not merge this lmao * codersprite up * pause, time out * deploy the antimagic * Update code/__HELPERS/trait_helpers.dm Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * Update code/datums/status_effects/buffs.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> * Update code/game/gamemodes/wizard/magic_tarot.dm Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> --------- Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com> Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
This commit is contained in:
co-authored by
DGamerL
Burzah
parent
6057ff5c31
commit
7bbebbb23f
@@ -200,6 +200,17 @@
|
||||
/obj/item/clothing/suit/space/hardsuit/wizard/setup_shielding()
|
||||
AddComponent(/datum/component/shielded, max_charges = 15, recharge_start_delay = 0 SECONDS)
|
||||
|
||||
/obj/item/clothing/suit/space/hardsuit/wizard/equipped(mob/user, slot)
|
||||
. = ..()
|
||||
ADD_TRAIT(user, TRAIT_ANTIMAGIC, "[UID(src)]")
|
||||
ADD_TRAIT(user, TRAIT_ANTIMAGIC_NO_SELFBLOCK, "[UID(src)]")
|
||||
|
||||
/obj/item/clothing/suit/space/hardsuit/wizard/dropped(mob/user)
|
||||
. = ..()
|
||||
REMOVE_TRAIT(user, TRAIT_ANTIMAGIC, "[UID(src)]")
|
||||
REMOVE_TRAIT(user, TRAIT_ANTIMAGIC_NO_SELFBLOCK, "[UID(src)]")
|
||||
|
||||
|
||||
/obj/item/clothing/suit/space/hardsuit/wizard/arch
|
||||
desc = "For the arch wizard in need of additional protection."
|
||||
min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT
|
||||
|
||||
Reference in New Issue
Block a user