
Hey all, With the very likely inclusion of the UA Summon <creature type> Spirit spells in the upcoming Tasha's Cauldron of Everything, I'm wondering how people are planning on making tokens for these summoned creatures, should they work as they do now (or similarly). For those not in the know about what I mean, these summoned creatures have scaling attributes—Armor Class and Hit Points—that scale based on the level at which the spell was cast. My desired result is to have the three bars set up as follows: bar1: HP (auto scaling with bar3) bar2: AC (auto scaling with bar3) bar3: custom attribute called "spell_level" My hope was to have bar3 automatically change bar2 and the maximum for bar1, as such (Summon Celestial Spirit, as an example:) npc_hpformula: [[@{constitution_mod}+@{playername|wisdom_mod}+10*@{spell_level}]] hp: <defalt value, in this case 58> / @{npc_hpformula} bar1: set to hp npc_ac: [[11+@{spell_level}]] bar2: set to npc_ac bar3: set to spell_level With or without the [[ ]]'s, the attribute calls automatically update and replace themselves with the actual values of the attributes they are calling. I know this is the functionality, and I believe that HTML escaping wouldn't help me here (it would, in fact, make this work even less). Furthermore, I'm finding that when it replaces the attribute calls with their values, it fails to grab the value for @{playername|wisdom_mod} (playername = Scort, in this case). I suspect that this has something to do with the NPC not "owning" the player's token? I'm not sure, though. Is there any way to do this with attributes alone? Or does it require some form of API? Let me know what you guys think. I don't like the idea of having to do math on two different bars (plus the attacks, but those can be solved more simply) every time this token gets summoned to the table, even if simple. It's the principle of the thing! (Do the work on the front end to save yourself work later, even though the front-end work is probably 10x more work than you'd do doing the thing later, overall). EDIT: I apologize, I forgot to mention some important details. This is for D&D 5e, and I'm using the OGL sheet (that's just the "5th edition" sheet, and is the default, yeah?)