Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

What is the name of the Attribute for a Monk's martial arts die on the 5e sheet?

July 06 (2 years ago)

For purposes of writing macros, what is the name of the Attribute for the martial arts die on the 5e D&D sheet? For instance, when writing macros involving level, you can use "@{level}". But I cannot find anything like that for the martial arts die (I am trying to write a few macros for things like Quickened Healing, etc that reference the martial arts die, which of course scales up with level).

July 06 (2 years ago)

Edited July 06 (2 years ago)
Gauss
Forum Champion


Shard said:

For purposes of writing macros, what is the name of the Attribute for the martial arts die on the 5e D&D sheet? For instance, when writing macros involving level, you can use "@{level}". But I cannot find anything like that for the martial arts die (I am trying to write a few macros for things like Quickened Healing, etc that reference the martial arts die, which of course scales up with level).


Which character sheet are you using? If you don't know the name please supply a screenshot. ("5e D&D sheet" is not enough information as there are multiple 5e D&D sheets.)

July 06 (2 years ago)

Edited July 06 (2 years ago)

This one? I think it's just called D&D 5e by Roll20.

Gauss said:


Shard said:

For purposes of writing macros, what is the name of the Attribute for the martial arts die on the 5e D&D sheet? For instance, when writing macros involving level, you can use "@{level}". But I cannot find anything like that for the martial arts die (I am trying to write a few macros for things like Quickened Healing, etc that reference the martial arts die, which of course scales up with level).


Which character sheet are you using? If you don't know the name please supply a screenshot. ("5e D&D sheet" is not enough information as there are multiple 5e D&D sheets.)




July 06 (2 years ago)

Edited July 06 (2 years ago)
Gauss
Forum Champion

There is no attribute for the Martial Arts die. You can add one if you'd like. 

1) Create an attribute
2) name it MartialArtsDie (or whatever you want)
3) Put this into the first box: d[[{@{level},0}>1*4 + {@{level},0}>5*2 + {@{level},0}>11*2 + {@{level},0}>17*2]]
You now have a scaling martial arts die. 

Note: if you multiclass you will need to change @{level} to the appropriate monk level attribute, probably @{base_level} in the case of your screenshot. 

July 06 (2 years ago)

Thanks! Works like a charm!

Gauss said:

There is no attribute for the Martial Arts die. You can add one if you'd like. 

1) Create an attribute
2) name it MartialArtsDie (or whatever you want)
3) Put this into the first box: d[[{@{level},0}>1*4 + {@{level},0}>5*2 + {@{level},0}>11*2 + {@{level},0}>17*2]]
You now have a scaling martial arts die. 

Note: if you multiclass you will need to change @{level} to the appropriate monk level attribute, probably @{base_level} in the case of your screenshot.