Kitteh6660 / Corruption-of-Champions-Mod

CoC source from fenoxo, modded by Kitteh6660
232 stars 97 forks source link

Paws 'n' claws #1314

Closed Stadler76 closed 6 years ago

Stadler76 commented 6 years ago

Gameplay changes

Made the furries (dogs, cats and foxes) even furrier by giving them paws aka paw-like hands with claws. All three new arm types now add one extra point to the corresponding race score. See the GDoc CoC: Paws 'n' Claws for the TF and appearance blurbs.

Internal changes

Notes

@Netys: I guessed, that the intention for your OC (Custom character Etis) was to give him fox arms with fox claws. See the diff below:

diff --git a/classes/classes/CharSpecial.as b/classes/classes/CharSpecial.as
index 21153b48e..6cd8e765d 100644
--- a/classes/classes/CharSpecial.as
+++ b/classes/classes/CharSpecial.as
@@ -1634,7 +1634,7 @@ package classes

            player.face.type = Face.FOX;
            player.ears.type = Ears.FOX;
-           player.arms.claws.type = Claws.DOG;
+           player.arms.setType(Arms.FOX);
            player.arms.claws.tone = "ivory";
            player.eyes.type = Eyes.DRAGON;
            player.lowerBody.type = LowerBody.FOX;

The appearance blurb for the arms of your OC is now:

Soft, snow white fluff covers your arms. Your paw-like hands have cute, pink paw pads and short curved, ivory claws.

Since dragon wings are now colorable I've set the two wing colors to 'snow white'. The appearance blurb for the wings of your OC is now:

Magnificent wings sprout from your shoulders. When unfurled they stretch further than your arm span, and a single beat of them is all you need to set out toward the sky. They look a bit like bat wings, but the membranes are covered in fine, delicate snow white scales supported by snow white bones. A wicked talon juts from the end of each bone.

If you have any objections or suggestions, just tell me and I'll fix that ASAP.