Thank you Oosh for the clear explanation! Okay so here's what I've tried changing it to for the Pathfinder Second Edition sheet (let me know if you catch any syntax errors!): const r20_PF2e = { repSec: [ { sec: 'repeating_items-readied', nameAttrs: ['readied_item'], // index of Name Attributes should match index of linked Value Attributes in next Array valAttrs: ['readied_quantity', 'readied_hit_points'], }, { sec: 'repeating_items-worn', nameAttrs: ['worn_item'], valAttrs: ['worn_quantity', 'worn_hit_points'], }, { sec: 'repeating_items-other', nameAttrs: ['other_item'], valAttrs: ['other_quantity', 'other_hit_points'], }, { sec: 'repeating_spellinnate', nameAttrs: ['name'], valAttrs: ['current_level', 'uses', 'uses_max'], }, { sec: 'repeating_spellfocus', nameAttrs: ['name'], valAttrs: ['current_level'], }, { sec: 'repeating_cantrip', nameAttrs: ['name'], valAttrs: ['current_level', 'uses', 'uses_max'], }, { sec: 'repeating_normalspells', nameAttrs: ['name'], valAttrs: ['current_level', 'uses', 'uses_max'], } ], other: { nameAttrs: ['focus_points', 'cantrips_per_day', 'level_1_per_day', 'level_2_per_day', 'level_3_per_day', 'level_4_per_day', 'level_5_per_day', 'level_6_per_day', 'level_7_per_day', 'level_8_per_day', 'level_9_per_day', 'level_10_per_day'], // index of Name Attributes should match index of linked Value Attributes in next Array valAttrs: ['focus_points', 'cantrips_per_day', 'level_1_per_day', 'level_2_per_day', 'level_3_per_day', 'level_4_per_day', 'level_5_per_day', 'level_6_per_day', 'level_7_per_day', 'level_8_per_day', 'level_9_per_day', 'level_10_per_day'] } }; const currentSheet = r20_PF2e; Repeating sections are set up for all three inventory categories, with a given item's quantity or hit points adjustable. all four spell categories, with the spell's heightened level and prepared uses adjustable. QUESTION : uses_max is technically just the max value for the uses attribute ( uses|max ); should I just leave that out and use the --limit|,max argument to set that value? Is there a way to set uses and its max value at once (e.g. set a spell to have 3/3 uses prepared)? Non-repeating sections: focus points (a pool for focus spells) and all other spell slots. Is setting these as both nameAttrs and valAttrs redundant? Each one is just a number attribute, no name attached, so could I remove the whole nameAttrs array from this section?