mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-25 09:06:34 +01:00
14 lines
587 B
Plaintext
14 lines
587 B
Plaintext
//* This file is explicitly licensed under the MIT license. *//
|
|
//* Copyright (c) 2023 Citadel Station Developers *//
|
|
|
|
//* Atom destruction types, used in /deconstruct() and its derived/child/called functions.
|
|
|
|
/// Atom was neatly deconstructed
|
|
#define ATOM_DECONSTRUCT_DISASSEMBLED 0
|
|
/// Atom received excess kinetic energy, usually through weaponry
|
|
#define ATOM_DECONSTRUCT_DESTROYED 1
|
|
/// Atom was the victim of a corrosive or caustic chemical
|
|
#define ATOM_DECONSTRUCT_ACID 2
|
|
/// Atom was put out of commission by an unexpected thermal event
|
|
#define ATOM_DECONSTRUCT_FIRE 3
|