mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-27 11:43:09 +00:00
93 lines
2.0 KiB
JavaScript
93 lines
2.0 KiB
JavaScript
const _ = require('lodash');
|
|
const { SNIPPET_TYPE, FIELD_TYPE } = require('../../../shared/naturalcrit/codeEditor/helpers/widget-elements/constants');
|
|
|
|
module.exports = [{
|
|
name : 'monster',
|
|
type : SNIPPET_TYPE.BLOCK,
|
|
fields : [{
|
|
name : 'frame',
|
|
type : FIELD_TYPE.CHECKBOX
|
|
}, {
|
|
name : 'wide',
|
|
type : FIELD_TYPE.CHECKBOX
|
|
}]
|
|
}, {
|
|
name : 'classTable',
|
|
type : SNIPPET_TYPE.BLOCK,
|
|
fields : [{
|
|
name : 'frame',
|
|
type : FIELD_TYPE.CHECKBOX
|
|
}, {
|
|
name : 'decoration',
|
|
type : FIELD_TYPE.CHECKBOX
|
|
}, {
|
|
name : 'wide',
|
|
type : FIELD_TYPE.CHECKBOX
|
|
}]
|
|
}, {
|
|
name : 'image',
|
|
type : SNIPPET_TYPE.INJECTOR,
|
|
fields : []
|
|
}, {
|
|
name : 'artist',
|
|
type : SNIPPET_TYPE.BLOCK,
|
|
fields : [{
|
|
name : 'top',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
hints : true
|
|
}]
|
|
}, {
|
|
name : 'watercolor',
|
|
type : SNIPPET_TYPE.INLINE,
|
|
fields : [{
|
|
name : 'watercolor',
|
|
type : FIELD_TYPE.IMAGE_SELECTOR,
|
|
preview : (value)=>`/assets/watercolor/watercolor${value}.png`,
|
|
values : _.range(1, 13)
|
|
}, {
|
|
name : 'top',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
hints : true
|
|
}, {
|
|
name : 'left',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
hints : true
|
|
}, {
|
|
name : 'width',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
hints : true
|
|
}, {
|
|
name : 'opacity',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5
|
|
}]
|
|
}, {
|
|
name : 'imageMaskCenter',
|
|
type : SNIPPET_TYPE.INLINE,
|
|
fields : [{
|
|
name : 'imageMaskCenter',
|
|
type : FIELD_TYPE.IMAGE_SELECTOR,
|
|
preview : (value)=>`/assets/waterColorMasks/center/${typeof value === 'number' ? (()=>{
|
|
const str = String(value);
|
|
return _.range(0, 4 - str.length).map(()=>'0').join('') + str;
|
|
})() : value}.webp`,
|
|
values : _.range(1, 17)
|
|
}, {
|
|
name : '--offsetX',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
}, {
|
|
name : '--offsetY',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
}, {
|
|
name : '--rotation',
|
|
type : FIELD_TYPE.TEXT,
|
|
increment : 5,
|
|
}]
|
|
}];
|