#GitHub - sun-dragon-cult/fvtt-system-rqg...

1 messages · Page 1 of 1 (latest)

onyx hatch
#

Late reply, and I only have half an answer, but one way to roll a skill in RQG is this

const result = await _token.actor.getBestEmbeddedDocumentByRqid("i.skill.dance").abilityRoll();

So get an actor (by any means you like), and then find the skill on that actor that you want to roll by searching for it's RQID. When you got the skill, roll it directly by calling abilityRoll() on it, or open the chat prompt by calling toChat() on it.