I'm trying to figure out how the Dragon body is structured... mostly so I can mod it to be able to attack with its claws. While doing so, I noticed that the dragon seems to only have one "claw" on each foot.
So, I understand that the dragon uses QUADRUPED, 4TOES_FQ, and 4TOES_RQ... which means it has four feet and four toes on each foot. After setting out the basics, it gets a little more confusing...
[USE_MATERIAL_TEMPLATE:CLAW:NAIL_TEMPLATE]
[USE_TISSUE_TEMPLATE:CLAW:CLAW_TEMPLATE]
[TISSUE_LAYER:BY_CATEGORY:TOE:CLAW:FRONT]
Please correct me if I'm wrong. The first two lines here, I assume, set the material for the the third line (despite lack of indentation). The third line replaces the dragons TOEs with CLAWs. So I would assume that the dragon would have 16 claws total, 4 on each of 4 feet.
And yet when I give it a claw attack:
[ATTACK:SCRATCH:CHILD_TISSUE_LAYER_GROUP:BY_TYPE:STANCE:BY_CATEGORY:ALL:CLAW]
[ATTACK_SKILL:GRASP_STRIKE]
[ATTACK_VERB:claw:claws]
[ATTACK_CONTACT_PERC:100]
[ATTACK_PENETRATION_PERC:100]
[ATTACK_FLAG_WITH]
[ATTACK_FLAG_EDGE]
[ATTACK_PRIORITY:SECOND]
and then test it in the arena, it tells me that I can attack with:
claw/fourth left rear toe
claw/fourth right rear toe
claw/fourth left front toe
claw/fourth right front toe
Never mind the fact that eventually I want to make the attack such that the dragon can only use the front feet to claw with-- if it's selecting all claws, and here making me pick which claw individually, shouldn't it be showing me 16 different claws, not four?
So... first... how do I give the dragon 4 claws on each foot. Second, once I succeed at this, how do I make it so you can attack with all claws on a foot at once? Third, how do I make it attack with only the front two feet, not the rear two?