Rebalancing and adjusting divisors for all weapon damage values.

This commit is contained in:
Zuhayr
2015-05-17 16:51:55 +09:30
parent a540e97e1b
commit ed34aa2466
16 changed files with 98 additions and 151 deletions
@@ -17,7 +17,7 @@
can_buckle = 1
buckle_lying = 1
var/material/material
var/apply_cosmentics = 1
var/apply_cosmetics = 1
/obj/structure/bed/New(var/newloc, var/new_material)
..(newloc)
@@ -28,7 +28,7 @@
if(!istype(material))
qdel(src)
return
if(apply_cosmentics)
if(apply_cosmetics)
color = material.icon_colour
name = "[material.display_name] [initial(name)]"
desc = "[initial(desc)] It's made of [material.display_name]."
@@ -73,7 +73,7 @@
name = "psychiatrist's couch"
desc = "For prime comfort during psychiatric evaluations."
icon_state = "psychbed"
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/psych/New(var/newloc)
..(newloc,"leather")
@@ -82,7 +82,7 @@
name = "resting contraption"
desc = "This looks similar to contraptions from earth. Could aliens be stealing our technology?"
icon_state = "abed"
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/alien/New(var/newloc)
@@ -96,7 +96,7 @@
icon = 'icons/obj/rollerbed.dmi'
icon_state = "down"
anchored = 0
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/roller/attackby(obj/item/weapon/W as obj, mob/user as mob)
if(istype(W,/obj/item/roller_holder))
@@ -70,7 +70,7 @@
icon_state = "wooden_chair"
name = "wooden chair"
desc = "Old is never too old to not be in fashion."
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/chair/wood/New(var/newloc)
..(newloc, "wood")
@@ -84,7 +84,7 @@
icon_state = "comfychair"
color = rgb(255,255,255)
var/image/armrest = null
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/chair/comfy/New()
armrest = image("icons/obj/objects.dmi", "comfychair_armrest")
@@ -125,7 +125,7 @@
/obj/structure/bed/chair/office
anchored = 0
buckle_movable = 1
apply_cosmentics = 0
apply_cosmetics = 0
/obj/structure/bed/chair/comfy/lime
color = rgb(255,251,0)