mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-08-23 05:08:54 +01:00
Finishes with the warnings.
This commit is contained in:
@@ -41,9 +41,9 @@
|
||||
'modular_sand/sound/interactions/oral2.ogg'), 70, 1, -1)
|
||||
|
||||
switch(milkers.size)
|
||||
if("c" || "d" || "e")
|
||||
if("c", "d", "e")
|
||||
modifier = 2
|
||||
if("f" || "g" || "h")
|
||||
if("f", "g", "h")
|
||||
modifier = 3
|
||||
else
|
||||
if(milkers.size in milkers.breast_values)
|
||||
|
||||
@@ -126,9 +126,9 @@
|
||||
var/modifier = 1
|
||||
var/obj/item/organ/genital/breasts/B = target.getorganslot(ORGAN_SLOT_BREASTS)
|
||||
switch(B.size)
|
||||
if("c" || "d" || "e")
|
||||
if("c", "d", "e")
|
||||
modifier = 2
|
||||
if("f" || "g" || "h")
|
||||
if("f", "g", "h")
|
||||
modifier = 3
|
||||
else
|
||||
if(B.size in B.breast_values)
|
||||
@@ -146,9 +146,9 @@
|
||||
var/modifier = 1
|
||||
var/obj/item/organ/genital/breasts/B = target.getorganslot(ORGAN_SLOT_BREASTS)
|
||||
switch(B.size)
|
||||
if("c" || "d" || "e")
|
||||
if("c", "d", "e")
|
||||
modifier = 2
|
||||
if("f" || "g" || "h")
|
||||
if("f", "g", "h")
|
||||
modifier = 3
|
||||
else
|
||||
if(B.size in B.breast_values)
|
||||
@@ -167,9 +167,9 @@
|
||||
var/modifier = 1
|
||||
var/obj/item/organ/genital/breasts/B = target.getorganslot(ORGAN_SLOT_BREASTS)
|
||||
switch(B.size)
|
||||
if("c" || "d" || "e")
|
||||
if("c", "d", "e")
|
||||
modifier = 2
|
||||
if("f" || "g" || "h")
|
||||
if("f", "g", "h")
|
||||
modifier = 3
|
||||
else
|
||||
if(B.size in B.breast_values)
|
||||
|
||||
@@ -214,11 +214,13 @@ Difficulty: Medium
|
||||
switch(rand(0,100))
|
||||
if(0 to 1)
|
||||
passed = 1
|
||||
else
|
||||
|
||||
if(enraged)
|
||||
switch(rand(0,100))
|
||||
if(0 to 5)
|
||||
passed = 1
|
||||
else
|
||||
|
||||
if(passed == 1)
|
||||
visible_message("<span class='danger'>[src] dodged the projectile!</span>", "<span class='userdanger'>You dodge the projectile!</span>")
|
||||
|
||||
Reference in New Issue
Block a user