Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tioluko authored Sep 13, 2024
1 parent ec70c7f commit 5ae90a3
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/feather.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
chargedrain = 1
chargetime = 15
charge_max = 5 SECONDS
learnable = FALSE
learnable = TRUE

/obj/effect/proc_holder/spell/arcane/feather/cast(list/targets, mob/living/user)
if(isliving(targets[1]))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/firewall.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
chargedrain = 1
chargetime = 20
charge_max = 40 SECONDS
learnable = FALSE
learnable = TRUE
charging_slowdown = 2

/obj/effect/proc_holder/spell/arcane/firewall/cast(list/targets,mob/user = usr)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/light.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
chargetime = 15
charge_max = 40 SECONDS
charging_slowdown = 1
learnable = FALSE
learnable = TRUE

/obj/effect/proc_holder/spell/arcane/light/cast(list/targets, mob/living/carbon/user = usr)
var/light_power = clamp(4 + (user.mind.get_skill_level(/datum/skill/magic/arcane) - 3), 4, 7) // every step above journeyman should get us 1 more tile of brightness
Expand Down
4 changes: 2 additions & 2 deletions code/modules/spells/roguetown/arcane/magicwall.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
charge_max = 60 SECONDS
charging_slowdown = 3
sound = 'sound/magic/magic_nulled.ogg'
learnable = FALSE
learnable = TRUE
var/wall_type = /obj/structure/magicwall/caster

/obj/structure/magicwall
desc = "A wall of pure arcyne force."
name = "Arcyne Wall"
name = "Arcane Wall"
icon = 'icons/effects/effects.dmi'
icon_state = "m_shield"
break_sound = 'sound/combat/hits/onstone/stonedeath.ogg'
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/repulse.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
chargetime = 0
charge_max = 30 SECONDS
charging_slowdown = 2
learnable = FALSE
learnable = TRUE
var/stun_amt = 5
var/maxthrow = 3
var/repulse_force = MOVE_FORCE_STRONG
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/roots.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
chargetime = 20
charge_max = 30 SECONDS
charging_slowdown = 3
learnable = FALSE
learnable = TRUE
var/area_of_effect = 1
var/duration = 4 SECONDS

Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/roguetown/arcane/unlock.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
charge_max = 20 SECONDS
charging_slowdown = 2
movement_interrupt = TRUE
learnable = FALSE
learnable = TRUE

/obj/effect/proc_holder/spell/arcane/unlock/cast(list/targets, mob/user = usr)
var/atom/location = get_turf(targets[1])
Expand Down

0 comments on commit 5ae90a3

Please sign in to comment.