This is a question for our master API scripters out there. I am trying to edit the Power Cards API a very minor bit. The section below is a minor edit that I want to add. I just can't figure out how to get it to output Concentration instead of {{concentration=1}} function getSpellInfo(charid, spellname) { var return_set = []; try { var spell_prefix = filterObjs(function(z) { return (z.get("characterid") == charid && z.get("name").endsWith("spellname")); }) .filter(entry => entry.get("current") == spellname)[0] .get("name").slice(0,-9); } catch (e) { return(return_set) }; return_set.push("SP-NAME|" + getAttrByName(charid, spell_prefix + "spellname")); return_set.push("SP-LEVEL|" + (spell_prefix.charAt(16) == "c" ? 0 : spell_prefix.charAt(16))); return_set.push("SP-SCHOOL|" + getAttrByName(charid, spell_prefix + "spellschool")); return_set.push("SP-RANGE|" + getAttrByName(charid, spell_prefix + "spellrange")); return_set.push("SP-DURATION|" + getAttrByName(charid, spell_prefix + "spellduration")); return_set.push("SP-ATTACK|" + getAttrByName(charid, spell_prefix + "spellattack")); return_set.push("SP-DAMAGE|" + getAttrByName(charid, spell_prefix + "spelldamage")); return_set.push("SP-DAMAGETYPE|" + getAttrByName(charid, spell_prefix + "spelldamagetype")); return_set.push("SP-DAMAGE2|" + getAttrByName(charid, spell_prefix + "spelldamage")); return_set.push("SP-DAMAGETYPE2|" + getAttrByName(charid, spell_prefix + "spelldamagetype")); return_set.push("SP-HLDIE|" + getAttrByName(charid, spell_prefix + "spellhldie")); return_set.push("SP-HLDIETYPE|" + getAttrByName(charid, spell_prefix + "spellhldietype")); return_set.push("SP-OUTPUT|" + getAttrByName(charid, spell_prefix + "spelloutput")); var desc = getAttrByName(charid, spell_prefix + "spelldescription").replace(/\<p\>/g,"").replace(/\<\/p\>/g,"").replace(/\n/g,"<br>") return_set.push("SP-DESCRIPTION|" + desc); return_set.push("SP-MORECANTRIPDAMAGE|" + (desc.includes("damage increases by") ? 1 : 0)); return_set.push("SP-ATHIGHER|" + getAttrByName(charid, spell_prefix + "spellathigherlevels")); return_set.push("SP-ADDABILITY|" + (getAttrByName(charid, spell_prefix + "spelldmgmod") == "Yes" ?1:0)); return_set.push("SP-CASTINGTIME|" + getAttrByName(charid, spell_prefix + "spellcastingtime")); return_set.push("SP-SAVE|" + getAttrByName(charid, spell_prefix + "spellsave")); return_set.push("SP-SAVESUCCESS|" + getAttrByName(charid, spell_prefix + "spellsavesuccess")); return_set.push("SP-HEALING|" + getAttrByName(charid, spell_prefix + "spellhealing")); return_set.push("SP-CONC|" + getAttrByName(charid, spell_prefix + "spellconcentration")); return (return_set); } Everything above the SP-CONC line is fully functional already. Any help would be appreciated.