PROBLEM So I'm trying to add a display on a character sheet tab that will track permanent injuries to the player's body, like so (the normal state is all blue, the red is just the highlight some of the areas for an example) My question is whether my idea to implement this is valid with the Roll20 application. (Or if there is a better way to go about doing it) MY IDEA. WILL IT WORK? IS THERE A BETTER WAY? My plan was to: isolate the body parts/regions into their own layer in my photo manipulation tool slice up the image based on those layers, as best as I could reconstruct the image with a table overlay the 'damage' images onto the 'normal' image To prevent conflict between 'damage' images, only the red parts will be saved. The image slices that are related to damage to a body part would all be given their own "class" which would then have it's own "z-index" so that they could be toggled. The image positions would be set 'absolute' to the table cell so they all stack. I'll add an un-displayed checkbox that I'll toggle with JS to determine when the body-part damage is visible.