Removes Wizard + Conflux (#12067)

This commit is contained in:
Doxxmedearly
2021-06-30 19:55:06 -03:00
committed by GitHub
parent 361cfb766b
commit 3acb186b26
119 changed files with 63 additions and 3718 deletions
@@ -21,7 +21,7 @@ var/list/spells = typesof(/spell) //needed for the badmin verb for now
var/holder_var_type = "bruteloss" //only used if charge_type equals to "holder_var"
var/holder_var_amount = 20 //same. The amount adjusted with the mob's var when the spell is used
var/spell_flags = NEEDSCLOTHES
var/spell_flags
var/invocation = "HURP DURP" //what is uttered when the wizard casts the spell
var/invocation_type = SpI_NONE //can be none, whisper, shout, and emote
var/range = 7 //the range of the spell; outer radius for aoe spells
@@ -231,11 +231,6 @@ var/list/spells = typesof(/spell) //needed for the badmin verb for now
to_chat(user, "Mmmf mrrfff!")
return 0
var/spell/noclothes/spell = locate() in user.spell_list
if((spell_flags & NEEDSCLOTHES) && !(spell && istype(spell)) && holder == user)//clothes check
if(!user.wearing_wiz_garb())
return 0
return 1
/spell/proc/check_charge(var/skipcharge, mob/user)