fixes + balancing

This commit is contained in:
DragonTrance
2022-06-08 19:15:51 -04:00
parent bd72cf382d
commit 99b3c904d5
12 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
icon_state = "b_condom_wrapped"
var/unwrapped = 0
w_class = WEIGHT_CLASS_TINY
price = PRICE_LOW
price = PRICE_LOW * 1.25
obj/item/condom/Initialize()
create_reagents(300, DRAWABLE|NO_REACT)
+1 -1
View File
@@ -10,7 +10,7 @@
item_state = "rope" //This sprite is in restraints.dmi until I figure out how to refrence somewhere else
cuffsound = 'sound/weapons/cablecuff.ogg'
armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0)
price = PRICE_LOW * 1.25 //What's so expensive about a rope?
price = PRICE_LOW * 1.25
/mob/living/proc/rope_add(source) //Check to see if the rope is on, and then add effects
var/mob/living/carbon/M = source
+1 -1
View File
@@ -6,7 +6,7 @@
icon_state = "sounding_wrapped"
var/unwrapped = 0
w_class = WEIGHT_CLASS_TINY
price = PRICE_LOW
price = PRICE_LOW * 1.25
/obj/item/sounding/attack_self(mob/user)
if(!istype(user))
+1 -1
View File
@@ -13,7 +13,7 @@
var/style = "long"
var/inside = FALSE
var/last = 0
price = PRICE_LOW * 1.2
price = PRICE_LOW * 1.25
/obj/item/electropack/vibrator/Initialize() //give the device its own code
. = ..()