So i have a character with a whole bunch of natural attacks of varying damage rolls, and a wizard who likes to use Enlarge Person on my to boost these natural attacks. I recently modified my attacks to have a query asking if my size has been altered in each attack with outcomes for smaller, regular or larger but I am having issues with the results. I call my varying attacks through a chat menu either as a group or individually with the below token abilities: Chat Menu: /w GM &{template:default} {{name=Attack Menu for @{selected|character_name} }} {{Full Attacks= [Rage](~selected|Full-Atk-Rage) [Normal](~selected|Full-Atk-NRage) }} {{All Attacks= [Right Claw](~selected|Claw-R) [Left Claw](~selected|Claw-L) [Left Claw Rage](~selected|Claw-L-Rage) [Bite](~selected|Bite) [Gore](~selected|Gore) }} Example group of attacks (Full-Atk-Rage: %{selected|Claw-R} %{selected|Claw-L-Rage} %{selected|Bite} %{selected|Gore} All of the attacks look like this, with varying damages for which type of attack if being called (claws, bite, etc): Claw-R: &{template:pc} {{type=attackdamage}} {{name=Claw Attack}} {{attack=1}} {{damage=1}} {{atkvs=(Melee vs AC)}} {{dmg1flag=1}} {{charname=@{selected|token_name}}} {{roll=[[1d20cs>20 + ?{Flank?|No,0|Yes,2}[Flanking] + @{selected|attack_bonus}[AB Bonuses] + @{selected|melee_mod}[Melee Attack]]]}} {{critconfirm=[[1d20 + ?{Flank?|No,0|Yes,2}[Flanking] + @{selected|attack_bonus}[AB Bonuses] + @{selected|melee_mod}[Melee Attack]]]}} {{dmg1flag=1}} {{dmg1=[[?{Size Modifier|Normal,1d6|Smaller,1d4|Larger,1d8} + @{selected|strength_mod}[STR] + @{selected|melee_damage_bonus}[Damage Bonuses]]]}} {{dmg1type=Slashing}} {{descflag=On}} {{dmg1crit=[[?{Size Modifier|Normal,1d6|Smaller,1d4|Larger,1d8} + @{selected|strength_mod}[STR] + @{selected|melee_damage_bonus}[Damage Bonuses]]]}} {{desc=Quet’Kai slashes with his right claws}} Bite: &{template:pc} {{type=attackdamage}} {{name=Bite Attack}} {{attack=1}} {{damage=1}} {{atkvs=(Melee vs AC)}} {{dmg1flag=1}} {{charname=@{selected|token_name}}} {{roll=[[1d20cs>20 + ?{Flank?|No,0|Yes,2}[Flanking] + @{selected|attack_bonus}[AB Bonuses] + @{selected|melee_mod}[Melee Attack]]]}} {{critconfirm=[[1d20 + ?{Flank?|No,0|Yes,2}[Flanking] + @{selected|attack_bonus}[AB Bonuses] + @{selected|melee_mod}[Melee Attack]]]}} {{dmg1flag=1}} {{dmg1=[[?{Size Modifier|Normal,2d6|Smaller,1d10|Larger,2d8} + @{selected|strength_mod}[STR] + @{selected|melee_damage_bonus}[Damage Bonuses]]]}} {{dmg1type=Piercing}} {{descflag=On}} {{dmg1crit=[[?{Size Modifier|Normal,2d6|Smaller,1d10|Larger,2d8} + @{selected|strengthmod}[STR] + @{selected|melee_damage_bonus}[Damage Bonuses]]]}} {{desc=Quet’Kai tries to bite his foe}} Individually all of these attacks work perfectly, with the query returning the correct damage values. When called as a group through the chat menu every attack inherits the damage value of the first time the query is asked. So using the above examples, Claw-R is called first, the query is asked and normal is selected, 1d6 damage is dealt and the the next attack is called. Every attack is now doing 1d6 damage, including the Bite attack further up which should be doing 2d6. Is there a way to stop the queries in each of these attacks from inherited the damage output value whilst keeping the inherited input answer of "Normal, Smaller, Larger"? (using Pathfinder by Roll20 Sheet) I would like to avoid having one instance of each natural attack i have per size modifier I need to plan for in encounters but I am not seeing a way around it atm.