mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-13 00:47:31 +01:00
makes w_class use defines (#9848)
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
vital = 1
|
||||
icon_state = "brain"
|
||||
force = 1.0
|
||||
w_class = 2.0
|
||||
w_class = ITEMSIZE_SMALL
|
||||
throwforce = 1.0
|
||||
throw_speed = 3
|
||||
throw_range = 5
|
||||
@@ -312,4 +312,4 @@
|
||||
lobotomize(user)
|
||||
else
|
||||
to_chat(user, "<span class='notice'>The brain has already been operated on!</span>")
|
||||
..()
|
||||
..()
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
icon_name = "torso"
|
||||
max_damage = 200
|
||||
min_broken_damage = 50
|
||||
w_class = 5
|
||||
w_class = ITEMSIZE_HUGE
|
||||
body_part = UPPER_TORSO
|
||||
vital = 1
|
||||
parent_organ = null
|
||||
@@ -49,7 +49,7 @@
|
||||
icon_name = "groin"
|
||||
max_damage = 100
|
||||
min_broken_damage = 50
|
||||
w_class = 4
|
||||
w_class = ITEMSIZE_LARGE
|
||||
body_part = LOWER_TORSO
|
||||
parent_organ = BP_CHEST
|
||||
limb_flags = ORGAN_CAN_MAIM | ORGAN_CAN_AMPUTATE
|
||||
@@ -63,7 +63,7 @@
|
||||
icon_name = "l_arm"
|
||||
max_damage = 35
|
||||
min_broken_damage = 20
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = ARM_LEFT
|
||||
parent_organ = BP_CHEST
|
||||
limb_flags = ORGAN_CAN_MAIM | ORGAN_CAN_AMPUTATE | ORGAN_CAN_GRASP
|
||||
@@ -87,7 +87,7 @@
|
||||
icon_name = "l_leg"
|
||||
max_damage = 35
|
||||
min_broken_damage = 20
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = LEG_LEFT
|
||||
icon_position = LEFT
|
||||
parent_organ = BP_GROIN
|
||||
@@ -113,7 +113,7 @@
|
||||
icon_name = "l_foot"
|
||||
max_damage = 20
|
||||
min_broken_damage = 10
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
body_part = FOOT_LEFT
|
||||
icon_position = LEFT
|
||||
parent_organ = BP_L_LEG
|
||||
@@ -142,7 +142,7 @@
|
||||
icon_name = "l_hand"
|
||||
max_damage = 30
|
||||
min_broken_damage = 15
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
body_part = HAND_LEFT
|
||||
parent_organ = BP_L_ARM
|
||||
limb_flags = ORGAN_CAN_MAIM | ORGAN_CAN_AMPUTATE | ORGAN_CAN_GRASP
|
||||
@@ -167,7 +167,7 @@
|
||||
name = BP_HEAD
|
||||
max_damage = 50
|
||||
min_broken_damage = 25
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = HEAD
|
||||
parent_organ = BP_CHEST
|
||||
limb_flags = ORGAN_CAN_MAIM | ORGAN_CAN_AMPUTATE
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
icon_name = "torso"
|
||||
max_damage = 100
|
||||
min_broken_damage = 35
|
||||
w_class = 5
|
||||
w_class = ITEMSIZE_HUGE
|
||||
body_part = UPPER_TORSO
|
||||
vital = 1
|
||||
amputation_point = "spine"
|
||||
@@ -27,7 +27,7 @@
|
||||
icon_name = "groin"
|
||||
max_damage = 100
|
||||
min_broken_damage = 35
|
||||
w_class = 4
|
||||
w_class = ITEMSIZE_LARGE
|
||||
body_part = LOWER_TORSO
|
||||
vital = 1
|
||||
parent_organ = BP_CHEST
|
||||
@@ -44,7 +44,7 @@
|
||||
icon_name = "l_arm"
|
||||
max_damage = 50
|
||||
min_broken_damage = 30
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = ARM_LEFT
|
||||
parent_organ = BP_CHEST
|
||||
joint = "left elbow"
|
||||
@@ -70,7 +70,7 @@
|
||||
icon_name = "l_leg"
|
||||
max_damage = 50
|
||||
min_broken_damage = 30
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = LEG_LEFT
|
||||
icon_position = LEFT
|
||||
parent_organ = BP_GROIN
|
||||
@@ -96,7 +96,7 @@
|
||||
icon_name = "l_foot"
|
||||
max_damage = 35
|
||||
min_broken_damage = 15
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
body_part = FOOT_LEFT
|
||||
icon_position = LEFT
|
||||
parent_organ = BP_L_LEG
|
||||
@@ -127,7 +127,7 @@
|
||||
icon_name = "l_hand"
|
||||
max_damage = 35
|
||||
min_broken_damage = 15
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
body_part = HAND_LEFT
|
||||
parent_organ = BP_L_ARM
|
||||
joint = "left wrist"
|
||||
@@ -169,7 +169,7 @@
|
||||
name = BP_HEAD
|
||||
max_damage = 75
|
||||
min_broken_damage = 35
|
||||
w_class = 3
|
||||
w_class = ITEMSIZE_NORMAL
|
||||
body_part = HEAD | FACE
|
||||
vital = 1
|
||||
parent_organ = BP_CHEST
|
||||
|
||||
Reference in New Issue
Block a user