-
Notifications
You must be signed in to change notification settings - Fork 154
Garou Drip Update #1440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
SixplyDev
wants to merge
30
commits into
DarkPack13:master
Choose a base branch
from
SixplyDev:maybe
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Garou Drip Update #1440
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f63e8d7
yea
FalloutFalcon dc26908
stuff
FalloutFalcon af11bdd
removes duplicate lang defines
FalloutFalcon 8732350
stuff
FalloutFalcon 2b09e09
wolf hair
FalloutFalcon 7ce26f8
Merge branch 'master' of https://github.com/DarkPack13/SecondCity int…
FalloutFalcon dfa0917
unatomic changes cuase i cant be asked to make a deticated pr for htem
FalloutFalcon 12f3c4c
oops lol fixed stuff I think
b283a8b
Removed damage as an option. Whoopsies lol
462fb4d
Testing shit
7bd1ef4
Forgot the UI lol mb
b66737c
Typo
d4361bb
Death by typo...
6044c7d
Merge branch 'master' into maybe
SixplyDev f66c342
Fixing linter
54e1e80
Hopefully this fixes it...
00e601d
Did not fix it
5c6cf03
Please work...
0075789
Maybe this works...
b0ae6e4
Forgot that
f677d3b
Please work
c181547
Fixing the dme file to untick shit I mistakenly ticked
ab251f0
Maybe this works...
7709a1f
Fixing stuff
SixplyDev 2d42db6
Fixing an oversight
4146993
Merge branch 'maybe' of https://github.com/SixplyDev/garou-supremacy-…
df32fc6
Deleting unused files
d92feb8
Merge branch 'master' into maybe
SixplyDev 29fdf1d
Apply suggestion from @chazzyjazzy
FalloutFalcon 322302c
Update modular_darkpack/modules/werewolf_the_apocalypse/code/species/…
FalloutFalcon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| /obj/item/get_examine_icon(mob/user) | ||
| if(item_flags & ACTIVE_WORLD_ICON) | ||
| if(item_flags & ACTIVE_ONFLOOR_ICON) | ||
| return icon2html(initial(icon), user, initial(icon_state)) | ||
| else | ||
| return icon2html(src, user) |
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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
31 changes: 0 additions & 31 deletions
31
modular_darkpack/modules/languages/code/languages/garou_tongue.dm
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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
File renamed without changes.
26 changes: 26 additions & 0 deletions
26
...darkpack/modules/werewolf_the_apocalypse/code/preferences/customization/_customization.dm
This file contains hidden or 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,26 @@ | ||
| /datum/preference/choiced/fera_feature | ||
| abstract_type = /datum/preference/choiced/fera_feature | ||
| savefile_identifier = PREFERENCE_CHARACTER | ||
| category = PREFERENCE_CATEGORY_SECONDARY_FEATURES | ||
| priority = PREFERENCE_PRIORITY_WORLD_OF_DARKNESS | ||
| // must_have_relevant_trait = TRUE | ||
| must_be_accessible = TRUE | ||
| var/feature_key | ||
| var/splat_id | ||
|
|
||
| /datum/preference/choiced/fera_feature/init_possible_values() | ||
| return assoc_to_keys_features(SSaccessories.feature_list[feature_key]) | ||
|
|
||
|
|
||
| /datum/preference/choiced/fera_feature/apply_to_human(mob/living/carbon/human/target, value) | ||
| target.dna.features[feature_key] = value | ||
|
|
||
| /datum/preference/choiced/fera_feature/is_accessible(datum/preferences/preferences) | ||
| . = ..() | ||
| var/datum/splat/splat_path = preferences.read_preference(/datum/preference/choiced/splats) | ||
| if(!ispath(splat_path) || splat_path::id != splat_id) | ||
| return FALSE | ||
|
FalloutFalcon marked this conversation as resolved.
|
||
|
|
||
|
|
||
| /datum/sprite_accessory/fera_feature | ||
| abstract_type = /datum/sprite_accessory/fera_feature | ||
52 changes: 52 additions & 0 deletions
52
modular_darkpack/modules/werewolf_the_apocalypse/code/preferences/customization/fera_body.dm
This file contains hidden or 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,52 @@ | ||
| /datum/sprite_accessory/fera_feature/body | ||
| abstract_type = /datum/sprite_accessory/fera_feature/body | ||
|
|
||
|
|
||
|
|
||
| /datum/preference/choiced/fera_feature/garou_body | ||
| savefile_key = "garou_body" | ||
| feature_key = FEATURE_FERA_BODY(SPLAT_GAROU) | ||
| splat_id = SPLAT_GAROU | ||
|
chazzyjazzy marked this conversation as resolved.
|
||
|
|
||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou | ||
| abstract_type = /datum/sprite_accessory/fera_feature/body/garou | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_1 | ||
| name = "Right Eye Scar" | ||
| icon_state = "scar1" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_2 | ||
| name = "Left Eye Scar" | ||
| icon_state = "scar2" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_3 | ||
| name = "Nose Scar" | ||
| icon_state = "scar3" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_4 | ||
| name = "Chest Scar" | ||
| icon_state = "scar4" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_5 | ||
| name = "Leg Scar" | ||
| icon_state = "scar5" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_6 | ||
| name = "Head Scar" | ||
| icon_state = "scar6" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_7 | ||
| name = "Shoulder Scar" | ||
| icon_state = "scar7" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_8 | ||
| name = "Right Artificial Arm" | ||
| icon_state = "scar8" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/body/garou/scar_9 | ||
| name = "Left Artificial Arm" | ||
| icon_state = "scar9" | ||
|
|
||
| /datum/dna_block/feature/accessory/garou_body | ||
| feature_key = FEATURE_FERA_BODY(SPLAT_GAROU) | ||
76 changes: 76 additions & 0 deletions
76
...r_darkpack/modules/werewolf_the_apocalypse/code/preferences/customization/fera_clothes.dm
This file contains hidden or 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,76 @@ | ||
| /datum/sprite_accessory/fera_feature/clothes | ||
| abstract_type = /datum/sprite_accessory/fera_feature/clothes | ||
|
|
||
|
|
||
|
|
||
| /datum/preference/choiced/fera_feature/garou_clothes | ||
| savefile_key = "garou_clothes" | ||
| feature_key = FEATURE_FERA_CLOTHES(SPLAT_GAROU) | ||
| splat_id = SPLAT_GAROU | ||
|
|
||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou | ||
| abstract_type = /datum/sprite_accessory/fera_feature/clothes/garou | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/loincloth | ||
| name = "Loincloth" | ||
| icon_state = "loincloth" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/green_tribal | ||
| name = "Green Tribal Accessories" | ||
| icon_state = "green_tribal" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/beige_tribal | ||
| name = "Beige Tribal Accessories" | ||
| icon_state = "beige_tribal" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/leather_mantle | ||
| name = "Leather Mantle" | ||
| icon_state = "leather_mantle" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/studs | ||
| name = "Studs" | ||
| icon_state = "studs" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/dark_mantle | ||
| name = "Dark Mantle" | ||
| icon_state = "dark_mantle" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/loincloth_armband | ||
| name = "Loincloth & Armband" | ||
| icon_state = "loincloth_armband" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/skull_necklace | ||
| name = "Skull Necklace" | ||
| icon_state = "skull_necklace" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/metal_armour // yuck br*tish | ||
| name = "Metal Armor" // Fixed it teehee | ||
| icon_state = "metal_armour" // Vile disgusting spelling | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/fur_mantle | ||
| name = "Fur Mantle" | ||
| icon_state = "fur_mantle" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/fur_necklace_and_vambrace | ||
| name = "Fur Necklace & Vambraces" | ||
| icon_state = "fur_necklace_and_vambrace" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/armour_loincloth // yuck br*tish again... | ||
| name = "Armor & Loincloth" // Fixed it lalalala | ||
| icon_state = "armour_loincloth" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/red_cloak // litle red riding hood | ||
| name = "Red Cloak" | ||
| icon_state = "red_cloak" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/formal_tribal | ||
| name = "Formal Tribal Attire" | ||
| icon_state = "formal_tribal" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/clothes/garou/dollar_necklace | ||
| name = "$$$ Bling" | ||
| icon_state = "dollar_necklace" | ||
|
|
||
| /datum/dna_block/feature/accessory/garou_clothes | ||
| feature_key = FEATURE_FERA_CLOTHES(SPLAT_GAROU) |
33 changes: 33 additions & 0 deletions
33
modular_darkpack/modules/werewolf_the_apocalypse/code/preferences/customization/fera_hair.dm
This file contains hidden or 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,33 @@ | ||
|
|
||
| /datum/sprite_accessory/fera_feature/hair | ||
| abstract_type = /datum/sprite_accessory/fera_feature/hair | ||
|
|
||
|
|
||
|
|
||
| /datum/preference/choiced/fera_feature/garou_hair | ||
| savefile_key = "garou_hair" | ||
| feature_key = FEATURE_FERA_HAIR(SPLAT_GAROU) | ||
| splat_id = SPLAT_GAROU | ||
|
|
||
|
|
||
| /datum/sprite_accessory/fera_feature/hair/garou | ||
| abstract_type = /datum/sprite_accessory/fera_feature/hair/garou | ||
|
|
||
| /datum/sprite_accessory/fera_feature/hair/garou/hair_1 | ||
| name = "Mohawk" | ||
| icon_state = "hair1" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/hair/garou/hair_2 | ||
| name = "Long" | ||
| icon_state = "hair2" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/hair/garou/hair_3 | ||
| name = "Undercut" | ||
| icon_state = "hair3" | ||
|
|
||
| /datum/sprite_accessory/fera_feature/hair/garou/hair_4 | ||
| name = "Beard" | ||
| icon_state = "hair4" | ||
|
|
||
| /datum/dna_block/feature/accessory/garou_hair | ||
| feature_key = FEATURE_FERA_HAIR(SPLAT_GAROU) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.