mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-19 03:49:10 +01:00
makes w_class use defines (#9848)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
icon_state = "clipboard"
|
||||
item_state = "clipboard"
|
||||
throwforce = 0
|
||||
w_class = 2.0
|
||||
w_class = ITEMSIZE_SMALL
|
||||
throw_speed = 3
|
||||
throw_range = 10
|
||||
var/obj/item/pen/haspen //The stored pen.
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
desc = "A folder."
|
||||
icon = 'icons/obj/bureaucracy.dmi'
|
||||
icon_state = "folder"
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
drop_sound = 'sound/items/drop/paper.ogg'
|
||||
pickup_sound = 'sound/items/pickup/paper.ogg'
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
item_state = "paper"
|
||||
contained_sprite = 1
|
||||
throwforce = 0
|
||||
w_class = 1
|
||||
w_class = ITEMSIZE_TINY
|
||||
throw_range = 1
|
||||
throw_speed = 1
|
||||
layer = 4
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
icon_state = "paper"
|
||||
item_state = "paper"
|
||||
throwforce = 0
|
||||
w_class = 2
|
||||
w_class = ITEMSIZE_SMALL
|
||||
throw_range = 2
|
||||
throw_speed = 1
|
||||
layer = 4
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
drop_sound = 'sound/items/drop/cardboardbox.ogg'
|
||||
pickup_sound = 'sound/items/pickup/cardboardbox.ogg'
|
||||
throwforce = 1
|
||||
w_class = 5
|
||||
w_class = ITEMSIZE_HUGE
|
||||
throw_speed = 3
|
||||
throw_range = 7
|
||||
layer = OBJ_LAYER - 0.1
|
||||
|
||||
@@ -177,6 +177,6 @@
|
||||
icon = 'icons/obj/bureaucracy.dmi'
|
||||
icon_state = "shredp"
|
||||
throwforce = 0
|
||||
w_class = 1
|
||||
w_class = ITEMSIZE_TINY
|
||||
throw_range = 3
|
||||
throw_speed = 1
|
||||
|
||||
@@ -298,7 +298,7 @@ Pen exclusive commands
|
||||
icon_state = "crayonred"
|
||||
drop_sound = 'sound/items/drop/gloves.ogg'
|
||||
pickup_sound = 'sound/items/pickup/gloves.ogg'
|
||||
w_class = 1.0
|
||||
w_class = ITEMSIZE_TINY
|
||||
attack_verb = list("attacked", "coloured")
|
||||
colour = "#FF0000" //RGB
|
||||
var/shadeColour = "#220000" //RGB
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
desc = "A camera film cartridge. Insert it into a camera to reload it."
|
||||
icon_state = "film"
|
||||
item_state = "electropack"
|
||||
w_class = ITEMSIZE_SMALL
|
||||
w_class = ITEMSIZE_TINY
|
||||
|
||||
|
||||
/********
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
icon_state = "stamp-qm"
|
||||
item_state = "stamp"
|
||||
throwforce = 0
|
||||
w_class = 1.0
|
||||
w_class = ITEMSIZE_TINY
|
||||
throw_speed = 7
|
||||
throw_range = 15
|
||||
matter = list(DEFAULT_WALL_MATERIAL = 60)
|
||||
@@ -110,4 +110,4 @@
|
||||
n_name = replacetext(n_name," rubber stamp","")
|
||||
n_name = replacetext(n_name," stamp","")
|
||||
n_name = replacetext(n_name,"stamp","")
|
||||
name = "[n_name] rubber stamp"
|
||||
name = "[n_name] rubber stamp"
|
||||
|
||||
Reference in New Issue
Block a user