forked from NebulaSS13/Nebula
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from NebulaSS13/dev
merge upstream 24.06.2024
- Loading branch information
Showing
1,703 changed files
with
12,825 additions
and
11,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#define GENE_COND_COLD_RESISTANCE /decl/genetic_condition/superpower/cold_resist | ||
#define GENE_COND_XRAY /decl/genetic_condition/superpower/xray | ||
#define GENE_COND_SPACE_RESISTANCE /decl/genetic_condition/superpower/space_resist | ||
#define GENE_COND_NO_BREATH /decl/genetic_condition/superpower/no_breath | ||
#define GENE_COND_REMOTE_TALK /decl/genetic_condition/superpower/remotetalk | ||
#define GENE_COND_RUNNING /decl/genetic_condition/superpower/running | ||
#define GENE_COND_REMOTE_VIEW /decl/genetic_condition/superpower/remoteview | ||
#define GENE_COND_SHAPESHIFTER /decl/genetic_condition/superpower/morph | ||
#define GENE_COND_NO_FINGERPRINTS /decl/genetic_condition/superpower/noprints | ||
|
||
#define GENE_COND_CLUMSY /decl/genetic_condition/disability/clumsy | ||
#define GENE_COND_NEARSIGHTED /decl/genetic_condition/disability/nearsighted | ||
#define GENE_COND_EPILEPSY /decl/genetic_condition/disability/epilepsy | ||
#define GENE_COND_COUGHING /decl/genetic_condition/disability/coughing | ||
#define GENE_COND_TOURETTES /decl/genetic_condition/disability/tourettes | ||
#define GENE_COND_NERVOUS /decl/genetic_condition/disability/nervous | ||
#define GENE_COND_BLINDED /decl/genetic_condition/disability/blinded | ||
#define GENE_COND_MUTED /decl/genetic_condition/disability/muted | ||
#define GENE_COND_DEAFENED /decl/genetic_condition/disability/deafened | ||
|
||
#define GENE_COND_HUSK /decl/genetic_condition/husk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#define TRAIT_LEVEL_EXISTS 0 | ||
#define TRAIT_LEVEL_MINOR 1 | ||
#define TRAIT_LEVEL_MODERATE 2 | ||
#define TRAIT_LEVEL_MAJOR 3 | ||
|
||
#define DEFINE_ROBOLIMB_MODEL_TRAITS(MODEL_PATH, MODEL_ID, COST) \ | ||
/decl/trait/prosthetic_limb/left_hand/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/left_hand; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/left_arm/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/left_arm; \ | ||
trait_cost = COST; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/right_hand/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/right_hand; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/right_arm/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/right_arm; \ | ||
trait_cost = COST; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/left_foot/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/left_foot; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/left_leg/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/left_leg; \ | ||
trait_cost = COST; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/right_foot/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/right_foot; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/right_leg/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/right_leg; \ | ||
trait_cost = COST; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/head/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/head; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/chest/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/chest; \ | ||
trait_cost = COST * 0.5; \ | ||
} \ | ||
/decl/trait/prosthetic_limb/groin/##MODEL_ID { \ | ||
model = MODEL_PATH; \ | ||
parent = /decl/trait/prosthetic_limb/groin; \ | ||
trait_cost = COST * 0.5; \ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.