Tore out the old engine, left some wounds

This commit is contained in:
Stefan Zermatten
2021-09-27 14:28:32 +02:00
parent 2228802dd3
commit fdea748441
125 changed files with 102 additions and 2235 deletions

View File

@@ -0,0 +1,34 @@
import computeAction from './computeAction.testFn.js';
import computeAttribute from './computeAttribute.testFn.js';
import computeClasses from './computeClasses.testFn.js';
import computeConstants from './computeConstants.testFn.js';
import computeInventory from './computeInventory.testFn.js';
import computeDamageMultipliers from './computeDamageMultipliers.testFn.js';
import computeEffects from './computeEffects.testFn.js';
import computeSkills from './computeSkills.testFn.js';
export default [{
text: 'Computes actions',
fn: computeAction,
},{
text: 'Computes attributes',
fn: computeAttribute,
},{
text: 'Computes classes',
fn: computeClasses,
},{
text: 'Computes constants',
fn: computeConstants,
},{
text: 'Computes inventory',
fn: computeInventory,
},{
text: 'Computes damage multipliers',
fn: computeDamageMultipliers,
},{
text: 'Computes effects',
fn: computeEffects,
},{
text: 'Computes skills',
fn: computeSkills,
}];