Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ssic into Pluvia
  • Loading branch information
FatFatFat1 committed Sep 16, 2024
1 parent 0c65bec commit 85f0019
Show file tree
Hide file tree
Showing 16 changed files with 1,729 additions and 1,080 deletions.
5 changes: 2 additions & 3 deletions code/datums/components/clickplace.dm
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
victim.apply_damage(8, def_zone = BP_HEAD)
victim.visible_message("<span class='danger'>[assailant] slams [victim]'s face against \the [A]!</span>")
playsound(parent, 'sound/weapons/tablehit1.ogg', VOL_EFFECTS_MASTER)

SEND_SIGNAL(assailant, COMSIG_HUMAN_HARMED_OTHER,victim )
victim.log_combat(assailant, "face-slammed against \the [parent]")
return FALSE

Expand Down Expand Up @@ -227,8 +227,7 @@
INVOKE_ASYNC(victim, TYPE_PROC_REF(/atom/movable, do_simple_move_animation), A.loc, old_loc)
victim.Stun(2)
victim.Weaken(5)

victim.log_combat(assailant, "laid on [A]")
victim.process_aggresive_action(assailant, "laid on [A]")
else if(assailant.a_intent != INTENT_HARM)
/// Let's pretend a face-slam doesn't exist.
to_chat(assailant, "<span class='warning'>You need a better grip to do that!</span>")
Expand Down
8 changes: 8 additions & 0 deletions code/datums/mind.dm
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,11 @@
var/creation_time = 0 //World time when this datum was New'd. Useful to tell how long since a character spawned
var/creation_roundtime

// Pluvia sochial credit system
var/social_credit = 0
var/haram_point = 0
var/blessed = 0

var/willpower_amount = 1
var/possible_willpower_effects = list(/datum/willpower_effect/painkiller, /datum/willpower_effect/skills, /datum/willpower_effect/nutrition, /datum/willpower_effect/fat)
var/willpower_effects = list()
Expand Down Expand Up @@ -782,6 +787,9 @@
..()
if(!mind.assigned_role)
mind.assigned_role = "default" //default
mind.social_credit = species.start_social_credit //Pluvia social credit system
if(ispluvian(src))
global.pluvia_religion.add_member(src, HOLY_ROLE_PRIEST)

//slime
/mob/living/carbon/slime/mind_initialize()
Expand Down
Binary file modified icons/hud/actions.dmi
Binary file not shown.
Binary file modified icons/hud/screen_alert.dmi
Binary file not shown.
Binary file modified icons/mob/head.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_lefthand.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_righthand.dmi
Binary file not shown.
Binary file modified icons/mob/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/uniform_fat.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/hats.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/suits.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/uniforms.dmi
Binary file not shown.
Binary file modified icons/obj/food.dmi
Binary file not shown.
Binary file modified icons/turf/floors.dmi
Binary file not shown.
Loading

0 comments on commit 85f0019

Please sign in to comment.