Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Dark Heresy 2nd Edition"

From Roll20 Wiki

Jump to: navigation, search
(Dark Heresy 2nd Edition)
m (reorganize page categories)
(3 intermediate revisions by 2 users not shown)
Line 13: Line 13:
 
If you do not want tokens simply replace "selected" with "Character Name".
 
If you do not want tokens simply replace "selected" with "Character Name".
  
*Psyker focus power test. The Psy Rating (PR) is the number you are subtracting from your current PR (Ex: You have 5 PR and you subtract 4, you get a bonus of +40) For your modifier you must add or subtract depending on weather you have a Psy Focus and the abilities base modifier.
+
*Psyker focus power test. The Psy Rating (PR) is the number you are subtracting from your current PR (Ex: You have 5 PR and you subtract 4, you get a bonus of +40) For your modifier you must add or subtract depending on whether you have a Psy Focus and the abilities base modifier.
 
<pre>/roll -1*1d100-((@{selected|Willpower} +(?{Psy Rating Mod|0}*10)+?{modifier|0})*-1)</pre>
 
<pre>/roll -1*1d100-((@{selected|Willpower} +(?{Psy Rating Mod|0}*10)+?{modifier|0})*-1)</pre>
  
 
*Advanced Psyker focus power test. This includes all damage automaticly calculated for the Molten Beam Power. The (@{Selected|Psy Rating} -?{Psy Rating Mod}) Takes your characters Psy Rating and subtracts your Psy Rating Modifier.
 
*Advanced Psyker focus power test. This includes all damage automaticly calculated for the Molten Beam Power. The (@{Selected|Psy Rating} -?{Psy Rating Mod}) Takes your characters Psy Rating and subtracts your Psy Rating Modifier.
  
<pre>/me uses Molten Beam and gets [[-1*1d100-((@{Selected|Willpower}+(?{Psy Rating Mod|0}*10) +?{modifier|0})*-1)]]  
+
<pre>/me uses Molten Beam and gets [[-1*1d100-((@{Selected|Willpower}+(?{PsyRatingMod|0}*10) +?{modifier|0})*-1)]]  
Above/Bellow. He deals[[(1d10+5)+((@{Selected|Psy Rating} -?{Psy Rating Mod})*3)]] damage with pen  
+
Above/Bellow. He deals[[(1d10+5)+((@{Selected|PsyRating} -?{PsyRatingMod})*3)]] damage with pen  
[[((@{Selected|Psy Rating} -?{Psy Rating Mod})*2)]]</pre>
+
[[((@{Selected|PsyRating} -?{PsyRatingMod})*2)]]</pre>
 
*Ability test, you must choose your Characteristic from your sheet as stated above.
 
*Ability test, you must choose your Characteristic from your sheet as stated above.
 
<pre>/roll -1*(1d100) +@{selected|"Characteristic"} +?{modifier|0}</pre>
 
<pre>/roll -1*(1d100) +@{selected|"Characteristic"} +?{modifier|0}</pre>
Line 38: Line 38:
 
<pre>/roll 2d10d1+2+floor(@{Selected|Strength} /10)</pre>
 
<pre>/roll 2d10d1+2+floor(@{Selected|Strength} /10)</pre>
  
*Semi/full-auto weapons damage
+
Created By https://wiki.roll20.net/User:262892
<pre>/me deals [[("X"*?{Hits|1})d10+{"M"*?{Hits|1}})]] damage.</pre>
+
<br />
 
+
[[Category:Macros]]
where the hits have to be calculated from the number of successes in the BS check.
+
the "M" has to be filled in with the static weapon damage mod and the "X" with the number of dice (Xd10+M)
+
 
+
[[Category:Guides]]
+
 
[[Category:Games]]
 
[[Category:Games]]
 
Created By https://wiki.roll20.net/User:262892
 

Revision as of 22:44, 18 May 2019

Macro and Characteristic structure

The d100 system and it's reliance on degrees of success makes Dark Heresy macros very unconventional in their structure and the way you read the outcomes. Your character sheet must be set up with all stats you wish to use, you may use the abbreviations for the skills if you wish but the designation in the macro and the character sheet must be the same.

Macros

Dark Heresy 2nd Edition

*Remove All "Quotes" All formula's will show you the outcome of the roll if it a positive number if you succeed if a negative number you fail. With the ten digits showing your number of success or failures +/- 1. (EX: 06 would be one success, 10 would be two successes.) For these tests to work you must have set up a character and have access to his/her Abilities/Attributes page. You must have a token representing that character and have that token selcted. If you do not want tokens simply replace "selected" with "Character Name".

  • Psyker focus power test. The Psy Rating (PR) is the number you are subtracting from your current PR (Ex: You have 5 PR and you subtract 4, you get a bonus of +40) For your modifier you must add or subtract depending on whether you have a Psy Focus and the abilities base modifier.
/roll -1*1d100-((@{selected|Willpower} +(?{Psy Rating Mod|0}*10)+?{modifier|0})*-1)
  • Advanced Psyker focus power test. This includes all damage automaticly calculated for the Molten Beam Power. The (@{Selected|Psy Rating} -?{Psy Rating Mod}) Takes your characters Psy Rating and subtracts your Psy Rating Modifier.
/me uses Molten Beam and gets [[-1*1d100-((@{Selected|Willpower}+(?{PsyRatingMod|0}*10) +?{modifier|0})*-1)]] 
Above/Bellow. He deals[[(1d10+5)+((@{Selected|PsyRating} -?{PsyRatingMod})*3)]] damage with pen 
[[((@{Selected|PsyRating} -?{PsyRatingMod})*2)]]
  • Ability test, you must choose your Characteristic from your sheet as stated above.
/roll -1*(1d100) +@{selected|"Characteristic"} +?{modifier|0}
  • Initiative roll
/roll 1d10+floor(@{selected|Agility} /10) &{tracker}
  • Basic Ranged Attack
/roll -1*1d100-((@{Selected|Ballistic Skill}+?{Modifier|0})*-1)

Or

/me attacks with his Las Pistol does and shoots [[-1*1d100-((@{Selected|Ballistic Skill}+?{Modifier|0})*-1)]] 
Over/Under dealing [[{1d10+2}]] damage.
  • Tearing quality weapons, this example is for a chainsword so the damage pool may change.
/roll 2d10d1+2+floor(@{Selected|Strength} /10)

Created By https://wiki.roll20.net/User:262892