Rebalancing and adjusting divisors for all weapon damage values.

This commit is contained in:
Zuhayr
2015-05-17 16:28:03 +09:30
parent a540e97e1b
commit ed34aa2466
16 changed files with 98 additions and 151 deletions

View File

@@ -75,12 +75,12 @@ var/list/name_to_material
/material/proc/get_blunt_damage()
return weight //todo
/material/proc/get_edge_damage()
return hardness //todo
/material/proc/can_open_material_door(var/mob/living/user)
return 1
/material/proc/get_edge_damage()
return round(hardness/4) //todo
/material/proc/products_need_process()
return (radioactivity>0) //todo
@@ -213,7 +213,7 @@ var/list/name_to_material
integrity = 100
shard_type = SHARD_SHARD
tableslam_noise = 'sound/effects/Glasshit.ogg'
hardness = 15
hardness = 30
weight = 15
door_icon_base = "stone"
@@ -224,8 +224,6 @@ var/list/name_to_material
ignition_point = 300
integrity = 200 // idk why but phoron windows are strong, so.
icon_colour = "#FC2BC5"
hardness = 10
weight = 10
stack_origin_tech = "materials=3;phorontech=2"
/material/glass/phoron/reinforced
@@ -243,8 +241,8 @@ var/list/name_to_material
integrity = 100
shard_type = SHARD_SHARD
tableslam_noise = 'sound/effects/Glasshit.ogg'
hardness = 15
weight = 15
hardness = 40
weight = 30
stack_origin_tech = "materials=2"
composite_material = list() //todo

View File

@@ -109,7 +109,7 @@
if(91)
new/obj/item/device/soulstone(src)
if(92)
new/obj/item/weapon/material/katana(src)
new/obj/item/weapon/material/sword/katana(src)
if(93)
new/obj/item/weapon/dnainjector/xraymut(src) // Probably the least OP
if(94) // Why the hell not

View File

@@ -294,7 +294,7 @@
new_item.desc = ""
if(19)
apply_prefix = 0
new_item = new /obj/item/weapon/material/claymore(src.loc)
new_item = new /obj/item/weapon/material/sword(src.loc)
new_item.force = 10
item_type = new_item.name
if(20)
@@ -337,7 +337,7 @@
apply_material_decorations = 0
if(25)
apply_prefix = 0
new_item = new /obj/item/weapon/material/katana(src.loc)
new_item = new /obj/item/weapon/material/sword/katana(src.loc)
new_item.force = 10
item_type = new_item.name
if(26)