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

5e Dragonborns Breath weapon Macro

Hi everyone, I'm new here and I've been fiddling with macro's these past few days (internet is your friend :P) Now I have found a macro for a Dragonborns Breath Weapon and I changed it slightly to look a bit better imho. Then I wanted to not have to change it every time a new die could be cast, so I made a query. But now I think there should be a way to get it automaticly right with the level of the dragonborn taken as basis. What do you guys think? Anyway, here is the macro that I have right now:  /me inhales deeply and breathes forth a 5 by 30 ft line of fire! Damage = [[?{Level Dragonborn|one to five, 2|six to ten, 3|eleven to fifteen, 4|sixteen to twenty, 5}d6]] on failed Dex saving throw, 1/2 on succesfull DC = [[8d1 + @{constitution_mod} + @{PB}]] /me should now rest to use it again Thanks in advance :)
1516098666

Edited 1516098700
GiGs
Pro
Sheet Author
API Scripter
Assuming the level attribute is named Level: /me inhales deeply and breathes forth a 5 by 30 ft line of fire! Damage = [[ [[1+ceil(@{Level}/5)]]d6 ]] on failed Dex saving throw, 1/2 on succesful DC = [[8d1 + @{constitution_mod} + @{PB}]] /me should now rest to use it again I'm not sure why you have 8d1 in the DC section. 8 should work.
Nice! Thanks a lot ^^ Gonna try it out right now :) I don't really know, but I kept getting errors, and 8d1 prevented that :P Will try again with only 8 :)
Awesome! It works great ^^ First forgot to change @{Level} to @{druid_level} (in my case), then it would give four dice :P And you were right, 8 does work in the DC section. ^^
1516102693
GiGs
Pro
Sheet Author
API Scripter
Great :)