Brandon Cornejo
5 years ago
9 changed files with 60 additions and 172 deletions
-
5.gitignore
-
15Makefile
-
11acks/__init__.py
-
5acks/default_settings.py
-
4acks/models.py
-
175acks/npc/commands.py
-
12acks/npc/default_classes.csv
-
3acks/npc/models.py
-
2acks/npc/templates/generate_npc_party.html
@ -0,0 +1,15 @@ |
|||
.PHONY: run debug clean |
|||
|
|||
bin/activate: requirements.txt |
|||
test -f bin/activate || $(shell which python3) -m venv . |
|||
bin/pip install -Ur requirements.txt |
|||
touch bin/activate |
|||
|
|||
run: bin/activate |
|||
. bin/activate; FLASK_SETTINGS_FILE=../config/prod.cfg FLASK_ENV=production FLASK_APP=start.py flask run --host=0.0.0.0 |
|||
|
|||
debug: bin/activate |
|||
. bin/activate; FLASK_SETTINGS_FILE=../config/dev.cfg FLASK_ENV=development FLASK_APP=start.py flask run --host=0.0.0.0 |
|||
|
|||
clean: |
|||
rm -rf bin/ include/ lib/ lib64/ __pycache__/ share/; rm pyvenv.cfg |
@ -0,0 +1,5 @@ |
|||
# Default Configuration |
|||
SECRET_KEY = "" |
|||
|
|||
# Flask-SQLAlchemy |
|||
SQLALCHEMY_TRACK_MODIFICATIONS = False |
@ -0,0 +1,12 @@ |
|||
name,bucket,prime_requisite,hit_die_size,maximum_level,armour_modifier,melee_light,melee_medium,melee_heavy,ranged_light,ranged_heavy |
|||
Elven Nightblade,Demi-Human,D+I,6,11,-4,1,2,0,0,0 |
|||
Elven Spellsword,Demi-Human,S+I,6,10,-4,0,1,0,0,0 |
|||
Explorer,Campaign,S+D,6,14,-3,1,1,0,0,1 |
|||
Bladedancer,Campaign,W+D,6,14,-2,0,1,0,0,0 |
|||
Cleric,Core,WIS,6,14,0,1,3,1,1,3 |
|||
Fighter,Core,STR,8,14,1,1,4,1,1,1 |
|||
Thief,Core,DEX,4,14,-6,1,1,0,1,0 |
|||
Mage,Core,INT,4,14,-8,1,0,0,0,0 |
|||
Assassin,Campaign,S+D,6,14,-6,1,2,0,1,0 |
|||
Bard,Campaign,D+H,6,14,-3,1,2,0,1,0 |
|||
Dwarven Vaultguard,Demi-Human,STR,8,13,-1,0,3,1,1,1 |
Write
Preview
Loading…
Cancel
Save
Reference in new issue