-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #503 from open5e/475-add-monsters-from-kobold-pres…
…ss-black-flag 475 add monsters from kobold presss black flag
- Loading branch information
Showing
10 changed files
with
73,382 additions
and
13,262 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Generated by Django 3.2.20 on 2024-08-04 18:09 | ||
|
||
import django.core.validators | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api_v2', '0110_auto_20240804_1331'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_charisma', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the charisma ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_constitution', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the constitution ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_dexterity', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the dexterity ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_intelligence', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the intelligence ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_strength', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the strength ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='ability_score_wisdom', | ||
field=models.SmallIntegerField(default=0, help_text='Integer representing the wisdom ability.', validators=[django.core.validators.MinValueValidator(0), django.core.validators.MaxValueValidator(50)]), | ||
), | ||
migrations.AlterField( | ||
model_name='creature', | ||
name='experience_points_integer', | ||
field=models.IntegerField(blank=True, help_text='Optional override for calculated XP based on CR.', null=True, validators=[django.core.validators.MinValueValidator(0)]), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,19 @@ | ||
[ | ||
{ | ||
"model": "api.document", | ||
"pk": 46, | ||
"fields": { | ||
"version": "0.2", | ||
"slug": "blackflag", | ||
"title": "Black Flag SRD", | ||
"author": "Kobold Press", | ||
"organization": "Kobold Press", | ||
"url": "https://koboldpress.com/black-flag-reference-document/", | ||
"desc": "Black Flag Roleplaying Reference Document v0.2, © Open Design LLC d/b/a Kobold Press", | ||
|
||
"license": "ORC License", | ||
"license_url": "https://paizo.com/orclicense", | ||
"copyright": "ORC NOTICE: This product is licensed under the ORC License, located at the Library of Congress at TX 9-307-067, and available online at various locations including koboldpress.com/orclicense and others. All warranties are disclaimed as set forth therein.", | ||
|
||
"created_at": "2024-05-27T21:12" | ||
} | ||
"model": "api.document", | ||
"pk": 46, | ||
"fields": { | ||
"slug": "blackflag", | ||
"title": "Black Flag SRD", | ||
"desc": "Black Flag Roleplaying Reference Document v0.2, © Open Design LLC d/b/a Kobold Press", | ||
"license": "ORC License", | ||
"author": "Kobold Press", | ||
"organization": "Kobold Press", | ||
"version": "0.2", | ||
"url": "https://koboldpress.com/black-flag-reference-document/", | ||
"copyright": "ORC NOTICE: This product is licensed under the ORC License, located at the Library of Congress at TX 9-307-067, and available online at various locations including koboldpress.com/orclicense and others. All warranties are disclaimed as set forth therein.", | ||
"created_at": "2024-05-27T21:12:00", | ||
"license_url": "https://paizo.com/orclicense" | ||
} | ||
} | ||
] |
Oops, something went wrong.