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

adds back break bow, runes , magic arrow and ranger cloak to wizard and removes embed from break bow #22895

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
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
10 changes: 10 additions & 0 deletions code/game/objects/structures/crates_lockers/crates.dm
Original file line number Diff line number Diff line change
Expand Up @@ -403,3 +403,13 @@
new /mob/living/simple_animal/hostile/retaliate/goat/plunger(loc)
if(40)
new /mob/living/simple_animal/hostile/retaliate/goat/suspicious(loc)

/obj/structure/closet/crate/BreakBow
name = "BreakBow Crate"
desc = "This crate contains a break bow and quiver"


/obj/structure/closet/crate/BreakBow/PopulateContents()

new /obj/item/storage/belt/quiver/unlimited(src)
new /obj/item/gun/ballistic/bow/break_bow(src)
Original file line number Diff line number Diff line change
Expand Up @@ -143,3 +143,10 @@
item_path = /obj/item/wizard_armour_charge
category = "Defensive"
cost = 1

/datum/spellbook_entry/item/ranger_cloak
name = "Ranger Cloak"
desc = "A cape that makes the wearer quickly invisible while standing still, permitting them to dodge ranged attacks. Moving or dodging projectiles reduces the effect."
item_path = /obj/item/clothing/neck/cloak/ranger
cost = 2
category = "Defensive"
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,24 @@
item_path = /obj/item/vibro_weapon/wizard
category = "Offensive"
cost = 3

/datum/spellbook_entry/item/breakbow
name = "Break Bow"
desc = "A bladed bow that can be split into two swords which attack simultaneously as well as return to their thrower. Comes with a quiver of unlimited, powerful arrows."
item_path = /obj/structure/closet/crate/BreakBow
category = "Offensive"
cost = 2

/datum/spellbook_entry/magic_arrows
name = "Summon Magic Arrows"
desc ="A spell that summons a homing arrow in the user's hand, ready to be shot out of a bow that quickly becomes dull after hitting something. Can be quickly casted by pressing the 'quick-equip' key on an empty hand"
spell_type = /datum/action/cooldown/spell/conjure_item/arrow/magic
category = "Offensive"
cost = 1

/datum/spellbook_entry/item/rune_crate
name = "Rune Crate"
desc = "A wizard specialized in runecrafting, is offering a chest full of runes! The problem is, he mixed them up so you won't know what you will get!"
item_path = /obj/structure/closet/crate/magic
category = "Offensive"
cost = 1
2 changes: 1 addition & 1 deletion code/modules/projectiles/guns/ballistic/bow.dm
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
lefthand_file = 'icons/mob/inhands/weapons/swords_lefthand.dmi'
righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi'
hitsound = 'sound/weapons/bladeslice.ogg'
embedding = list("embedded_pain_multiplier" = 4, "embed_chance" = 10, "embedded_fall_chance" = 10, "embedded_ignore_throwspeed_threshold" = TRUE)
embedding = list("embedded_pain_multiplier" = 4, "embed_chance" = 0, "embedded_fall_chance" = 10, "embedded_ignore_throwspeed_threshold" = TRUE)
force = 27 //Total of 54 damage = death in two clicks (probably) PLUS it doesn't care about anti-magic
throwforce = 45 //Can't return if it hits anti-magic
armour_penetration = 50 //Enchanted blade of fuck you
Expand Down