Skip to content

Commit

Permalink
one last change.
Browse files Browse the repository at this point in the history
  • Loading branch information
UniquaSa committed Nov 21, 2024
1 parent 564a854 commit 2946b43
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,7 @@
beltl = /obj/item/rogueweapon/huntingknife/idagger/steel
backpack_contents = list(/obj/item/lockpick)
ADD_TRAIT(H, TRAIT_DODGEEXPERT, TRAIT_GENERIC)
ADD_TRAIT(H, TRAIT_STEELHEARTED, TRAIT_GENERIC)
ADD_TRAIT(H, TRAIT_SEEPRICES_SHITTY, TRAIT_GENERIC)
H.change_stat("strength", -1)
H.change_stat("strength", -2)
H.change_stat("perception", 2)
H.change_stat("speed", 2)
H.change_stat("intelligence", 3)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
name = "Anthrax"
tutorial = "With the brutal dismantlement of drow society, the talents of the redeemed Anthraxi were no longer needed. Yet where one door closes, another opens - the decadent mortals of the overworld clamber over each other to bid for your blade. Show them your craft."
allowed_sexes = list(MALE, FEMALE)
allowed_races = list("Dark Elf")
allowed_races = list(/datum/species/elf/dark)
outfit = /datum/outfit/job/roguetown/mercenary/anthrax
category_tags = list(CTAG_MERCENARY)
maximum_possible_slots = 5

cmode_music = 'sound/music/combat_delf.ogg'

/datum/outfit/job/roguetown/mercenary/anthrax/pre_equip(mob/living/carbon/human/H)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,9 @@
name = "Boltslinger"
tutorial = "A cutthroat and a soldier of fortune, your mastery of the crossbow has brought you to many battlefields, all in pursuit of mammon."
allowed_sexes = list(MALE, FEMALE)
allowed_races = list(
"Humen",
"Elf",
"Half-Elf",
"Dwarf",
"Tiefling",
"Dark Elf",
"Aasimar"
)
allowed_races = RACES_ALL_KINDS
outfit = /datum/outfit/job/roguetown/mercenary/boltslinger
category_tags = list(CTAG_MERCENARY)
maximum_possible_slots = 5


/datum/outfit/job/roguetown/mercenary/boltslinger/pre_equip(mob/living/carbon/human/H)
..()
Expand Down
11 changes: 10 additions & 1 deletion modular_hearthstone/code/modules/spells/roguetown/wizard.dm
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,16 @@
/obj/effect/proc_holder/spell/invoked/projectile/acidsplash5e,
/obj/effect/proc_holder/spell/invoked/frostbite5e,
/obj/effect/proc_holder/spell/invoked/guidance,
/obj/effect/proc_holder/spell/invoked/fortitude
/obj/effect/proc_holder/spell/invoked/fortitude,
/obj/effect/proc_holder/spell/self/bladeward5e,
/obj/effect/proc_holder/spell/invoked/boomingblade5e,
/obj/effect/proc_holder/spell/aoe_turf/conjure/createbonfire5e,
/obj/effect/proc_holder/spell/invoked/projectile/firebolt5e,
/obj/effect/proc_holder/spell/targeted/lightninglure5e,
/obj/effect/proc_holder/spell/invoked/magicstone5e,
/obj/effect/proc_holder/spell/invoked/mending5e,
/obj/effect/proc_holder/spell/self/primalsavagery5e,
/obj/effect/proc_holder/spell/invoked/projectile/rayoffrost5e
)
for(var/i = 1, i <= spell_choices.len, i++)
choices["[spell_choices[i].name]: [spell_choices[i].cost]"] = spell_choices[i]
Expand Down

0 comments on commit 2946b43

Please sign in to comment.