code/__DEFINES/_flags/item_flags.dm ![code/__DEFINES/_flags/item_flags.dm0](git.png)
IN_INVENTORY | is this item equipped into an inventory slot or hand of a mob? used for tooltips |
---|---|
FORCE_STRING_OVERRIDE | used for tooltips |
NEEDS_PERMIT | Used by security bots to determine if this item is safe for public use. |
NO_MAT_REDEMPTION | Stops you from putting things like an RCD or other items into an ORM or protolathe for materials. |
DROPDEL | When dropped, it calls qdel on itself |
NOBLUDGEON | when an item has this it produces no "X has been hit by Y with Z" message in the default attackby() |
ABSTRACT | for all things that are technically items but used for various different stuff |
IMMUTABLE_SLOW | When players should not be able to change the slowdown of the item (Speed potions, ect) |
SURGICAL_TOOL | Tool commonly used for surgery: won't attack targets in an active surgical operation on help intent (in case of mistakes) |
NO_UNIFORM_REQUIRED | Can be worn on certain slots (currently belt and id) that would otherwise require an uniform. |
ITEM_CAN_PARRY | This item can be used to parry. Only a basic check used to determine if we should proceed with parry chain at all. |
ITEM_CAN_BLOCK | This item can be used in the directional blocking system. Only a basic check used to determine if we should proceed with directional block handling at all. |
FAMILY_HEIRLOOM | Является ли данный предмет семейной ценностью (family heirloom) |
Define Details
ABSTRACT ![code/__DEFINES/_flags/item_flags.dm 18](git.png)
for all things that are technically items but used for various different stuff
DROPDEL ![code/__DEFINES/_flags/item_flags.dm 14](git.png)
When dropped, it calls qdel on itself
FAMILY_HEIRLOOM ![code/__DEFINES/_flags/item_flags.dm 30](git.png)
Является ли данный предмет семейной ценностью (family heirloom)
FORCE_STRING_OVERRIDE ![code/__DEFINES/_flags/item_flags.dm 7](git.png)
used for tooltips
IMMUTABLE_SLOW ![code/__DEFINES/_flags/item_flags.dm 20](git.png)
When players should not be able to change the slowdown of the item (Speed potions, ect)
IN_INVENTORY ![code/__DEFINES/_flags/item_flags.dm 5](git.png)
is this item equipped into an inventory slot or hand of a mob? used for tooltips
ITEM_CAN_BLOCK ![code/__DEFINES/_flags/item_flags.dm 28](git.png)
This item can be used in the directional blocking system. Only a basic check used to determine if we should proceed with directional block handling at all.
ITEM_CAN_PARRY ![code/__DEFINES/_flags/item_flags.dm 26](git.png)
This item can be used to parry. Only a basic check used to determine if we should proceed with parry chain at all.
NEEDS_PERMIT ![code/__DEFINES/_flags/item_flags.dm 9](git.png)
Used by security bots to determine if this item is safe for public use.
NOBLUDGEON ![code/__DEFINES/_flags/item_flags.dm 16](git.png)
when an item has this it produces no "X has been hit by Y with Z" message in the default attackby()
NO_MAT_REDEMPTION ![code/__DEFINES/_flags/item_flags.dm 12](git.png)
Stops you from putting things like an RCD or other items into an ORM or protolathe for materials.
NO_UNIFORM_REQUIRED ![code/__DEFINES/_flags/item_flags.dm 24](git.png)
Can be worn on certain slots (currently belt and id) that would otherwise require an uniform.
SURGICAL_TOOL ![code/__DEFINES/_flags/item_flags.dm 22](git.png)
Tool commonly used for surgery: won't attack targets in an active surgical operation on help intent (in case of mistakes)