File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 16
16
#define PROPERTY_HUGE span_tooltip (" Can not be placed into most storage containers." , " Huge" )
17
17
// / Gigantic size
18
18
#define PROPERTY_GIGANTIC span_tooltip (" Can not be picked up." , " Gigantic" )
19
-
19
+ // / EDGED
20
+ #define PROPERTY_EDGED span_tooltip (" Can be used to cut." , " Sharp" )
21
+ // / POINTY
22
+ #define PROPERTY_POINTY span_tooltip (" Can be used to puncture." , " Pointed" )
20
23
// Clothing
21
24
// / STOPSPRESSUREDAMAGE clothing flag
22
25
#define PROPERTY_SPACEPROOF_CLOTHING span_tooltip (" Protects the wearer from vacuum environments." , " Vacuumproof" )
Original file line number Diff line number Diff line change @@ -372,6 +372,11 @@ DEFINE_INTERACTABLE(/obj/item)
372
372
if (slot_flags)
373
373
. += PROPERTY_WEARABLE
374
374
375
+ if (sharpness & SHARP_EDGED )
376
+ . += PROPERTY_EDGED
377
+ if (sharpness & SHARP_POINTY )
378
+ . += PROPERTY_POINTY
379
+
375
380
if (siemens_coefficient == 0 )
376
381
. += PROPERTY_NONCONDUCTIVE
377
382
You can’t perform that action at this time.
0 commit comments