Hiya!
I'm using Harlowe 2.1.0 / Twine 2.2.1
I have a link (which is already styled via my stylesheet),which displays some text in the link itself. The link is a link to performing an action, which I want to have associated with costing two different attributes (in this case, willpower and stamina). I'd like the willpower cost to display blue and the stamina cost to display red, in the link text. Is that possible?
(set:$willpower_cost to 1)
(set:$stamina_cost to 2)
(set:$text to "Fight back: " + (text:$willpower_cost) + " " + (text:$stamina_cost"))
(link:$text)[
{stuff happens here}
]