Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - D&D 5th Edition SRD
Register FAQ Community Today's Posts Search

Notices

Reply
 
Thread Tools Display Modes
tooley1chris
Member
 
Join Date: Jun 2012
Posts: 65

Old July 12th, 2016, 04:22 AM
Has anyone started work on a home brew of psionicist or Unearthed Arcanas Awakened Mystic? Don't wanna reinvent the wheel.
tooley1chris is offline   #1 Reply With Quote
Mergon
Senior Member
 
Join Date: Sep 2012
Location: Ottawa, Canada
Posts: 788

Old July 12th, 2016, 06:53 AM
I've created the Mystic v2 for personal use; however its full of kludges and errors. I have started cleaning it up for the Community pack, but keep getting distracted by RL issues. .

Watch your back, Conserve your ammo,
and NEVER cut a deal with a dragon!
Mergon is offline   #2 Reply With Quote
tooley1chris
Member
 
Join Date: Jun 2012
Posts: 65

Old July 12th, 2016, 09:52 AM
Would you be willing to share this, for my own personal use? Maybe I can help track down some of those errors.
tooley1chris is offline   #3 Reply With Quote
Hansmo
Member
 
Join Date: Aug 2016
Posts: 30

Old August 7th, 2016, 04:19 PM
Quote:
Originally Posted by Mergon View Post
I've created the Mystic v2 for personal use; however its full of kludges and errors. I have started cleaning it up for the Community pack, but keep getting distracted by RL issues. .
Quote:
Originally Posted by tooley1chris View Post
Would you be willing to share this, for my own personal use? Maybe I can help track down some of those errors.
Have either of you made progress on stabilizing the v2 Mystic? I have likewise desire to mess with this and I am extremely slowly trying to learn my way around the scripting/editor but I am vastly out of my depth. I'd appreciate if you'd be willing to share your efforts with me. Please and thank you!
Hansmo is offline   #4 Reply With Quote
Hansmo
Member
 
Join Date: Aug 2016
Posts: 30

Old August 7th, 2016, 04:32 PM
And since we are discussing psionics, to my personal HL I added Gem dragons (the neutral psionic dragons) to the Dragonborn race.

Code:
thing id="rcDbrnAmet" name="Amethyst" description="{b}Damage Type:{/b} Force\n{b}Beath Weapon:{/b} 5 by 30 ft. line (Dex. save)" compset="RaceCustom">
    <tag group="AllowRCust" tag="rDragonbor" name="Dragonborn" abbrev="Dragonborn"/>
    <tag group="DamageType" tag="dtForce" name="Force" abbrev="Force"/>
    <tag group="DescInfo" tag="raDraBrWea" name="Breath Weapon" abbrev="Breath Weapon"/>
    <bootstrap thing="raDraBrWea">
      <assignval field="abText" value="5 by 30 ft. line, Dex save"/>
      </bootstrap>
    <bootstrap thing="raDraResis"></bootstrap>
    <eval phase="Final" priority="1000"><![CDATA[
      field[livename].text = "Draconic Ancestry: " & field[thingname].text]]></eval>
    </thing>
  <thing id="rcDbrnTopa" name="Topaz" description="{b}Damage Type:{/b} Necrotic\n{b}Beath Weapon:{/b} 15 ft. cone (Con. save)" compset="RaceCustom">
    <tag group="AllowRCust" tag="rDragonbor" name="Dragonborn" abbrev="Dragonborn"/>
    <tag group="DamageType" tag="dtNecrotic" name="Necrotic" abbrev="Necrotic"/>
    <tag group="DescInfo" tag="raDraBrWea" name="Breath Weapon" abbrev="Breath Weapon"/>
    <bootstrap thing="raDraBrWea">
      <assignval field="abText" value="15 ft. cone, Con save"/>
      </bootstrap>
    <bootstrap thing="raDraResis"></bootstrap>
    <eval phase="Final" priority="1000"><![CDATA[
      field[livename].text = "Draconic Ancestry: " & field[thingname].text]]></eval>
    </thing>
  <thing id="rcDbrnCrys" name="Crystal" description="{b}Damage Type:{/b} Radiant\n{b}Beath Weapon:{/b} 15 ft. cone (Dex. save)" compset="RaceCustom">
    <tag group="AllowRCust" tag="rDragonbor" name="Dragonborn" abbrev="Dragonborn"/>
    <tag group="DamageType" tag="dtRadiant" name="Radiant" abbrev="Radiant"/>
    <tag group="DescInfo" tag="raDraBrWea" name="Breath Weapon" abbrev="Breath Weapon"/>
    <bootstrap thing="raDraBrWea">
      <assignval field="abText" value="15 ft cone, Dex save"/>
      </bootstrap>
    <bootstrap thing="raDraResis"></bootstrap>
    <eval phase="Final" priority="1000"><![CDATA[
      field[livename].text = "Draconic Ancestry: " & field[thingname].text]]></eval>
    </thing>
  <thing id="rcDbrnSapp" name="Sapphire" description="{b}Damage Type:{/b} Psychic\n{b}Beath Weapon:{/b} 15 ft. cone (Wis. save)" compset="RaceCustom">
    <tag group="AllowRCust" tag="rDragonbor" name="Dragonborn" abbrev="Dragonborn"/>
    <tag group="DamageType" tag="dtPsychic" name="Psychic" abbrev="Psychic"/>
    <tag group="DescInfo" tag="raDraBrWea" name="Breath Weapon" abbrev="Breath Weapon"/>
    <bootstrap thing="raDraBrWea">
      <assignval field="abText" value="15 ft. cone, Wis save"/>
      </bootstrap>
    <bootstrap thing="raDraResis"></bootstrap>
    <eval phase="Final" priority="1000"><![CDATA[
      field[livename].text = "Draconic Ancestry: " & field[thingname].text]]></eval>
    </thing>
  <thing id="rcDbrnEmer" name="Emerald" description="{b}Damage Type:{/b} Thunder\n{b}Beath Weapon:{/b} 15 ft. cone (Con. save)" compset="RaceCustom">
    <tag group="AllowRCust" tag="rDragonbor" name="Dragonborn" abbrev="Dragonborn"/>
    <tag group="DamageType" tag="dtThunder" name="Thunder" abbrev="Thunder"/>
    <tag group="DescInfo" tag="raDraBrWea" name="Breath Weapon" abbrev="Breath Weapon"/>
    <bootstrap thing="raDraBrWea">
      <assignval field="abText" value="15 ft. cone, Con save"/>
      </bootstrap>
    <bootstrap thing="raDraResis"></bootstrap>
    <eval phase="Final" priority="1000"><![CDATA[
      field[livename].text = "Draconic Ancestry: " & field[thingname].text]]></eval>
    </thing>
Also, the Shardmind race which will be in an upcoming community pack would be at least thematically inclined towards Mystics.
Hansmo is offline   #5 Reply With Quote
bsmayhew
Junior Member
 
Join Date: Feb 2012
Posts: 11

Old August 16th, 2016, 06:55 AM
I'm a bit new to the Authoring kit. Where do I put this code in the Dragonborn Race?
Also can someone send me the Mystic class they have compiled for my use?
Directions on incorporating it will be appreciated as well.
Thank You ahead of time for your help.
bsmayhew is offline   #6 Reply With Quote
Mergon
Senior Member
 
Join Date: Sep 2012
Location: Ottawa, Canada
Posts: 788

Old July 12th, 2016, 09:55 AM
I'm willing. If you find bugs, report them to me please. Remember, this was created for my personal use in my game campaign, so there may be some extras stuff in the .user file that I will be removing for the Community pack.

Watch your back, Conserve your ammo,
and NEVER cut a deal with a dragon!
Mergon is offline   #7 Reply With Quote
tooley1chris
Member
 
Join Date: Jun 2012
Posts: 65

Old July 12th, 2016, 10:02 AM
Most excellent. Thank you for sharing!
tooley1chris is offline   #8 Reply With Quote
tooley1chris
Member
 
Join Date: Jun 2012
Posts: 65

Old July 12th, 2016, 10:45 AM
Wanted to see it in action before I made a judgement, so I took it up a few levels and the class seems...pretty underwhelming, huh? Not sure any of my group, myself included, would want to play this. Seems the other classes would out pace the mystic from start to finish. Am I missing something?
tooley1chris is offline   #9 Reply With Quote
Mergon
Senior Member
 
Join Date: Sep 2012
Location: Ottawa, Canada
Posts: 788

Old July 12th, 2016, 10:48 AM
Actually, its a pretty powerful class with a caster and a melee equivalents. It does only go up to 10th level atm though. Still. its a class that a wizard can multi-class into.

I'd read the pdf from the Unearthed Arcana website.

Watch your back, Conserve your ammo,
and NEVER cut a deal with a dragon!
Mergon is offline   #10 Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 09:26 AM.


Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.