Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweak: BattlemageRecharges 3 FOR 1 #3718

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/game/gamemodes/wizard/spellbook.dm
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@
/datum/spellbook_entry/item/battlemage_charge
name = "Battlemage Armour Charges"
desc = "A powerful defensive rune, it will grant eight additional charges to a suit of battlemage armour."
item_path = /obj/item/wizard_armour_charge
item_path = /obj/item/storage/box/wizard/recharge
category = "Weapons and Armors"
cost = 1

Expand Down
9 changes: 9 additions & 0 deletions code/game/objects/items/weapons/storage/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,15 @@
new /obj/item/clothing/suit/space/hardsuit/wizard/shielded(src)
new /obj/item/clothing/shoes/magboots/wizard(src)

/obj/item/storage/box/wizard/recharge
name = "Armour Recharge Bundle"
desc = "This box contains a bundle of Battlemage Armour Recharges"
icon_state = "box_wizard"

/obj/item/storage/box/wizard/recharge/populate_contents()
for(var/I in 1 to 3)
new /obj/item/wizard_armour_charge(src)

/obj/item/storage/box/candythief
name = "набор радужных конфет"
desc = "Набор для самых маленьких и не уверенных в себе работников, обожающих простые пути, смешивая всевозможные в один. Поставляется с сосательной конфетой. Удобный набор если нужно где-то засесть и не выходить. Производитель не отвечает за возникающие акне и галлюцинации от вашего времяпровождения."
Expand Down
Loading