1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-14 08:55:58 +00:00

UPdating the homebrew editor with new snippet bar

This commit is contained in:
Scott Tolksdorf
2016-05-05 08:36:33 -04:00
parent 133dd7c144
commit 4139a8ee12
8 changed files with 137 additions and 46 deletions

View File

@@ -4,6 +4,32 @@ var MonsterBlockGen = require('./monsterblock.gen.js');
var ClassFeatureGen = require('./classfeature.gen.js');
var FullClassGen = require('./fullclass.gen.js');
/* Snippet Categories
- editor
- Tables
- PHB
- document
- print
*/
module.exports = [
/*
{
@@ -123,4 +149,47 @@ module.exports = [
}
}
]
]
module.exports = [
{
groupName : 'Editor',
icon : 'fa-pencil',
snippets : [
{
name : 'Spell',
icon : 'fa-magic',
snippet : SpellGen
}
]
},
{
groupName : 'Tables',
icon : 'fa-table',
snippets : [
{
name : 'Spell',
icon : 'fa-magic',
snippet : SpellGen
}
]
},
{
groupName : 'PHB',
icon : 'fa-book',
snippets : [
{
name : 'Spell',
icon : 'fa-magic',
snippet : SpellGen
}
]
},
]