mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 18:44:48 +01:00
you feel the urge too...
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
if(istype(user, /mob/living/simple_animal/slaughter/cult)) //Harbringers of the Slaughter
|
||||
my_message = "<span class='cultlarge'><b>Harbringer of the Slaughter:</b> [message]</span>"
|
||||
else
|
||||
my_message = "<span class='cultitalic'><b>[(ishuman(user) ? "Acolyte" : "Construct")] [user]:</b> [message]</span>"
|
||||
my_message = "<span class='cultspeech'><b>[(ishuman(user) ? "Acolyte" : "Construct")] [user]:</b> [message]</span>"
|
||||
for(var/mob/M in mob_list)
|
||||
if(iscultist(M))
|
||||
to_chat(M, my_message)
|
||||
|
||||
@@ -42,11 +42,11 @@
|
||||
throwforce = 25
|
||||
var/cooldown = 0
|
||||
|
||||
/obj/item/weapon/melee/cultblade/dagger/afterattack(mob/living/target, mob/living/carbon/human/user)
|
||||
/obj/item/weapon/melee/cultblade/dagger/attack(mob/living/target as mob, mob/living/carbon/human/user as mob)
|
||||
..()
|
||||
if(ishuman(target))
|
||||
var/mob/living/carbon/human/bleeder = target
|
||||
if(cooldown <= world.time && prob(50) && (!bleeder.stat || (!bleeder.species.flags & NO_BLOOD)))
|
||||
if(!(cooldown > world.time) && (!bleeder.stat || !(bleeder.species.flags & NO_BLOOD)))
|
||||
visible_message("<span class='warning'>The runes on the blade absorb the blood of [target]!</span>")
|
||||
bleeder.drip(500)
|
||||
cooldown = world.time + 2400
|
||||
@@ -130,8 +130,8 @@
|
||||
/obj/item/clothing/suit/hooded/cultrobes/cult_shield
|
||||
name = "empowered cultist armor"
|
||||
desc = "Empowered garb which creates a powerful shield around the user."
|
||||
icon_state = "cult_armor"
|
||||
item_state = "cult_armor"
|
||||
icon_state = "cult_armour"
|
||||
item_state = "cult_armour"
|
||||
w_class = 4
|
||||
armor = list(melee = 50, bullet = 40, laser = 50,energy = 30, bomb = 50, bio = 30, rad = 30)
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
|
||||
|
||||
@@ -149,7 +149,7 @@
|
||||
var/pickedtype
|
||||
var/otheritem //ie:helmet..
|
||||
switch(choice)
|
||||
if("Shielded Robe")
|
||||
if("Shielded Hardsuit")
|
||||
pickedtype = /obj/item/clothing/suit/hooded/cultrobes/cult_shield
|
||||
if("Flagellant's Robe")
|
||||
pickedtype = /obj/item/clothing/suit/hooded/cultrobes/berserker
|
||||
|
||||
@@ -320,6 +320,9 @@ h1.alert, h2.alert {color: #000000;}
|
||||
.say_quote {font-family: Georgia, Verdana, sans-serif;}
|
||||
.cult {color: #800080; font-weight: bold; font-style: italic;}
|
||||
.cultspeech {color: #7F0000; font-style: italic;}
|
||||
.cultitalic {color: #960000; font-style: italic;}
|
||||
.cultlarge {color: #960000; font-weight: bold; font-size: 3;}
|
||||
.narsie {color: #960000; font-weight: bold; font-size: 15;}
|
||||
.interface {color: #330033;}
|
||||
.big {font-size: 150%;}
|
||||
.reallybig {font-size: 175%;}
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 469 KiB After Width: | Height: | Size: 470 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 154 KiB After Width: | Height: | Size: 154 KiB |
Reference in New Issue
Block a user