Skip to content

Commit

Permalink
Merge pull request #504 from open5e/staging
Browse files Browse the repository at this point in the history
Release 1.6.0.
  • Loading branch information
augustjohnson authored Aug 4, 2024
2 parents 20420c0 + 8efdb1c commit 2bad62d
Show file tree
Hide file tree
Showing 11 changed files with 73,391 additions and 29 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -199,17 +199,17 @@
"version": "1.0"
},
{
"author": "EN Publishing",
"copyright": "This work includes material taken from the A5E System Reference Document (A5ESRD) by EN Publishing and available at A5ESRD.com, based on Level Up: Advanced 5th Edition, available at www.levelup5e.com. The A5ESRD is licensed under the Creative Commons Attribution 4.0 International License available at https://creativecommons.org/licenses/by/4.0/legalcode.",
"author": "Kobold Press",
"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": "2014-07-16T00:00:0.000000",
"desc": "Advanced 5th Edition System Reference Document by EN Publishing",
"license": "Creative Commons Attribution 4.0 International License",
"license_url": "http://open5e.com/legal",
"organization": "EN Publishing\u2122",
"desc": "Black Flag Roleplaying Reference Document v0.2, \u00a9 Open Design LLC d/b/a Kobold Press",
"license": "ORC License",
"license_url": "https://paizo.com/orclicense",
"organization": "Kobold Press",
"slug": "blackflag",
"title": "TODO",
"url": "https://a5esrd.com/a5esrd",
"version": "1.0"
"title": "Black Flag SRD",
"url": "https://koboldpress.com/black-flag-reference-document/",
"version": "0.2"
},
{
"author": "Dan Dillon, Chris Harris, Rodrigo Garcia Carmona, Wolfgang Baur",
Expand Down
49 changes: 49 additions & 0 deletions api_v2/migrations/0111_auto_20240804_1809.py
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)]),
),
]
2 changes: 1 addition & 1 deletion api_v2/models/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
("miles","miles")
]

ABILITY_SCORE_MAXIMUM = 30
ABILITY_SCORE_MAXIMUM = 50
SAVING_THROW_MINIMUM = -5
SAVING_THROW_MAXIMUM = +20
SKILL_BONUS_MINIMUM = -5
Expand Down
20 changes: 10 additions & 10 deletions data/v1/blackflag/Document.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"pk": 46,
"fields": {
"slug": "blackflag",
"title": "TODO",
"desc": "Advanced 5th Edition System Reference Document by EN Publishing",
"license": "Creative Commons Attribution 4.0 International License",
"author": "EN Publishing",
"organization": "EN Publishing™",
"version": "1.0",
"url": "https://a5esrd.com/a5esrd",
"copyright": "This work includes material taken from the A5E System Reference Document (A5ESRD) by EN Publishing and available at A5ESRD.com, based on Level Up: Advanced 5th Edition, available at www.levelup5e.com. The A5ESRD is licensed under the Creative Commons Attribution 4.0 International License available at https://creativecommons.org/licenses/by/4.0/legalcode.",
"created_at": "2023-11-08T15:35:07.465",
"license_url": "http://open5e.com/legal"
"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"
}
}
]
Loading

0 comments on commit 2bad62d

Please sign in to comment.