From f57b7c9991ded8c8b28a9be547135c53d2c3b6a8 Mon Sep 17 00:00:00 2001
From: GDN <96800819+GDNgit@users.noreply.github.com>
Date: Mon, 13 Mar 2023 16:37:50 -0500
Subject: [PATCH] Buffs summon magic and summon guns (#20569)
* Buffs summon magic and summon guns
* Update code/game/gamemodes/wizard/spellbook.dm
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
* Update code/game/gamemodes/wizard/spellbook.dm
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
---------
Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
---
code/game/gamemodes/wizard/spellbook.dm | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
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