diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm index 39d87c57293..dcc0b7404b7 100644 --- a/code/game/gamemodes/wizard/spellbook.dm +++ b/code/game/gamemodes/wizard/spellbook.dm @@ -325,10 +325,10 @@ /datum/spellbook_entry/summon/GetInfo() var/dat ="" dat += "[name]" - if(cost>0) - dat += " Cost:[cost]
" - else + if(cost == 0) dat += " No Cost
" + else + dat += " Cost:[cost]
" dat += "[desc]
" if(active) dat += "Already cast!
" @@ -365,7 +365,8 @@ /datum/spellbook_entry/summon/guns name = "Summon Guns" - desc = "Nothing could possibly go wrong with arming a crew of lunatics just itching for an excuse to kill you. There is a good chance that they will shoot each other first." + desc = "Nothing could possibly go wrong with arming a crew of lunatics just itching for an excuse to kill you. There is a good chance that they will shoot each other first. Hopefully. Gives you 2 extra spell points on purchase." + cost = -2 log_name = "SG" is_ragin_restricted = TRUE @@ -379,7 +380,8 @@ /datum/spellbook_entry/summon/magic name = "Summon Magic" - desc = "Share the wonders of magic with the crew and show them why they aren't to be trusted with it at the same time." + desc = "Share the wonders of magic with the crew and show them why they aren't to be trusted with it at the same time. Gives you 2 extra spell points on purchase." + cost = -2 log_name = "SU" is_ragin_restricted = TRUE