Skip to content

Commit

Permalink
O5e archetypes (#408)
Browse files Browse the repository at this point in the history
* Monk - Way of Shadowdancing

Based on a similar class from the PHB but not included in the SRD.

Google Doc version of text: https://docs.google.com/document/d/1-ZCtuh5kAL6GgN5BM9uqKf6Dopgthjxrk_K6iByL3w8/edit

* Wizard - School of Divining and Soothsaying

Based on a similar class from the PHB but not included in the SRD.

Google Doc version of text: https://docs.google.com/document/d/1RCAPzSbkYY-ps-OvMnBkL_Vs3Og7d803s8DESDDvCq0/edit

* Druid - Circle of the Many

Based on a similar class from the PHB but not included in the SRD.

Google Doc version of text: https://docs.google.com/document/d/1bUDS33wCBR1SzK7vkd2fUO7f1Lz-AsSN-BEVRTuyX98/edit

* remove space in Wyrd Magic bloodline

* Cleric - Demise Domain

Based on a similar class from the DMG but not included in the SRD.

Google Doc version of text: https://docs.google.com/document/d/10lJV93c1Bg4y3Co07bGjXfQ6goAmrf76WhCXRunCE68/edit

* Warlock - The Ancient Fey Court

Based on a similar class from the PHB but not included in the SRD.

Google Doc version of text: https://docs.google.com/document/d/1YU7CXBCJgQuQnlap9U3RvHoCt1I0gGFk7nHNXJA2yl4/edit

* fixed Circle of the Many table

accidentally listed no swim speed at level 4

* empty commit to re-run checks

* merge with staging

---------

Co-authored-by: Ean Moody <[email protected]>
  • Loading branch information
nstefanski and eepMoody authored Jul 2, 2024
1 parent bc8e1ee commit 6915542
Show file tree
Hide file tree
Showing 2 changed files with 106 additions and 2 deletions.
44 changes: 44 additions & 0 deletions api_v2/migrations/0102_auto_20240702_2106.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Generated by Django 3.2.20 on 2024-07-02 21:06

import django.core.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('api_v2', '0101_auto_20240627_1246'),
]

operations = [
migrations.AlterField(
model_name='creature',
name='saving_throw_charisma',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to charisma saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
migrations.AlterField(
model_name='creature',
name='saving_throw_constitution',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to constitution saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
migrations.AlterField(
model_name='creature',
name='saving_throw_dexterity',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to dexterity saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
migrations.AlterField(
model_name='creature',
name='saving_throw_intelligence',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to intelligence saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
migrations.AlterField(
model_name='creature',
name='saving_throw_strength',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to strength saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
migrations.AlterField(
model_name='creature',
name='saving_throw_wisdom',
field=models.SmallIntegerField(blank=True, help_text='Signed integer added to wisdom saving throws.', null=True, validators=[django.core.validators.MinValueValidator(-5), django.core.validators.MaxValueValidator(20)]),
),
]
Loading

0 comments on commit 6915542

Please sign in to comment.