mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-04 03:52:40 +00:00
* Legacy renderer (#1184) * Include two versions of Marked.js * Include two versions of Marked.js * Working two different render pipelines Adds stylesheet "styleLegacy.less" Adds markdownHandler "markdownLegacy.js" The BrewRenderer will switch between these and the new pipeline dependent on the "version" prop passed in. * Mustache-style div blocks * Legacy snippets & columnbreak * Codemirror styling for Div Blocks * Lint * Codemirror highlights for inline Divs as well These will turn red `{{class Content}}` Multi-line divs will turn purple ``` {{class,class2 content }} ``` No real need for these to be different colors. Just for testing. * More lint * Update dependencies. * Adding Button to switch render pipelines * Update Marked.js * Popup alert to refresh page when renderer changed * Don't compress files in Development (very slow) * Block DIV or inline Span depending on {{ placement * \column emits a Div instead of Span * Allow share page to use new renderer * {{ divs no longer need empty lines. Spans work in lists. * Typo * Typo * Enforce \page must be at start of line. Code cleanup. * Inject newlines after/before {{/}} to avoid needing blank lines * Fixes issues with tables. * Remove console.log * Fix spacing issue for Spans * Move things from Brewrenderer to Markdown Try to keep all custom text fiddling in one spot. * Rename variables * Update Font-Awesome to v5.15. Fix style issues on popups. * Update {{ Divs/Spans, Fix nested hilighting * Fixed Spans/divs with no tags or just commas * Use blacklist for {{ to allow more characters * Update package-lock.json * Update all icons to Font-awesome 5 * V3 hidden behind config variable Add "globalThis.enable_v3 = true" in the console to enable. * lint * Legacy renderer (#1229) * Include two versions of Marked.js * Include two versions of Marked.js * Working two different render pipelines Adds stylesheet "styleLegacy.less" Adds markdownHandler "markdownLegacy.js" The BrewRenderer will switch between these and the new pipeline dependent on the "version" prop passed in. * Mustache-style div blocks * Legacy snippets & columnbreak * Codemirror styling for Div Blocks * Lint * Codemirror highlights for inline Divs as well These will turn red `{{class Content}}` Multi-line divs will turn purple ``` {{class,class2 content }} ``` No real need for these to be different colors. Just for testing. * More lint * Update dependencies. * Adding Button to switch render pipelines * Update Marked.js * Popup alert to refresh page when renderer changed * Don't compress files in Development (very slow) * Block DIV or inline Span depending on {{ placement * \column emits a Div instead of Span * Allow share page to use new renderer * {{ divs no longer need empty lines. Spans work in lists. * Typo * Typo * Enforce \page must be at start of line. Code cleanup. * Inject newlines after/before {{/}} to avoid needing blank lines * Fixes issues with tables. * Remove console.log * Fix spacing issue for Spans * Move things from Brewrenderer to Markdown Try to keep all custom text fiddling in one spot. * Rename variables * Update Font-Awesome to v5.15. Fix style issues on popups. * Update {{ Divs/Spans, Fix nested hilighting * Fixed Spans/divs with no tags or just commas * Use blacklist for {{ to allow more characters * Update package-lock.json * Update all icons to Font-awesome 5 * V3 hidden behind config variable Add "globalThis.enable_v3 = true" in the console to enable. * lint * Give user styles higher priority to still allow overrides * Apply style priority to *all* user styles * Change .legacy .v3 to .phb, .phb3 * Revert accidental color change * Fix brew styles overwriting each other. (#1230) * Fix /page not working in legacy mode. (#1233) * Fix brew styles overwriting each other. * Word wrapping, start fixing spacing on Title letter * Fix \page in legacy brews when not at line start * Default 'legacy' if not set. Auto-change styles. * Fix brew styles overwriting each other. * Word wrapping, start fixing spacing on Title letter * Fix \page in legacy brews when not at line start * Fix Page Padding * Set 'legacy' as default value if not set in brew saved file. * Apply Legacy\v3 renderer to print page (#1235)
91 lines
3.1 KiB
JavaScript
91 lines
3.1 KiB
JavaScript
const _ = require('lodash');
|
|
|
|
const spellNames = [
|
|
'Astral Rite of Acne',
|
|
'Create Acne',
|
|
'Cursed Ramen Erruption',
|
|
'Dark Chant of the Dentists',
|
|
'Erruption of Immaturity',
|
|
'Flaming Disc of Inconvenience',
|
|
'Heal Bad Hygene',
|
|
'Heavenly Transfiguration of the Cream Devil',
|
|
'Hellish Cage of Mucus',
|
|
'Irritate Peanut Butter Fairy',
|
|
'Luminous Erruption of Tea',
|
|
'Mystic Spell of the Poser',
|
|
'Sorcerous Enchantment of the Chimneysweep',
|
|
'Steak Sauce Ray',
|
|
'Talk to Groupie',
|
|
'Astonishing Chant of Chocolate',
|
|
'Astounding Pasta Puddle',
|
|
'Ball of Annoyance',
|
|
'Cage of Yarn',
|
|
'Control Noodles Elemental',
|
|
'Create Nervousness',
|
|
'Cure Baldness',
|
|
'Cursed Ritual of Bad Hair',
|
|
'Dispell Piles in Dentist',
|
|
'Eliminate Florists',
|
|
'Illusionary Transfiguration of the Babysitter',
|
|
'Necromantic Armor of Salad Dressing',
|
|
'Occult Transfiguration of Foot Fetish',
|
|
'Protection from Mucus Giant',
|
|
'Tinsel Blast',
|
|
'Alchemical Evocation of the Goths',
|
|
'Call Fangirl',
|
|
'Divine Spell of Crossdressing',
|
|
'Dominate Ramen Giant',
|
|
'Eliminate Vindictiveness in Gym Teacher',
|
|
'Extra-Planar Spell of Irritation',
|
|
'Induce Whining in Babysitter',
|
|
'Invoke Complaining',
|
|
'Magical Enchantment of Arrogance',
|
|
'Occult Globe of Salad Dressing',
|
|
'Overwhelming Enchantment of the Chocolate Fairy',
|
|
'Sorcerous Dandruff Globe',
|
|
'Spiritual Invocation of the Costumers',
|
|
'Ultimate Rite of the Confetti Angel',
|
|
'Ultimate Ritual of Mouthwash',
|
|
];
|
|
|
|
module.exports = {
|
|
|
|
spellList : function(){
|
|
const levels = ['Cantrips (0 Level)', '2nd Level', '3rd Level', '4th Level', '5th Level', '6th Level', '7th Level', '8th Level', '9th Level'];
|
|
|
|
const content = _.map(levels, (level)=>{
|
|
const spells = _.map(_.sampleSize(spellNames, _.random(5, 15)), (spell)=>{
|
|
return `- ${spell}`;
|
|
}).join('\n');
|
|
return `##### ${level} \n${spells} \n`;
|
|
}).join('\n');
|
|
|
|
return `<div class='spellList'>\n${content}\n</div>`;
|
|
},
|
|
|
|
spell : function(){
|
|
const level = ['1st', '2nd', '3rd', '4th', '5th', '6th', '7th', '8th', '9th'];
|
|
const spellSchools = ['abjuration', 'conjuration', 'divination', 'enchantment', 'evocation', 'illusion', 'necromancy', 'transmutation'];
|
|
|
|
|
|
let components = _.sampleSize(['V', 'S', 'M'], _.random(1, 3)).join(', ');
|
|
if(components.indexOf('M') !== -1){
|
|
components += ` (${_.sampleSize(['a small doll', 'a crushed button worth at least 1cp', 'discarded gum wrapper'], _.random(1, 3)).join(', ')})`;
|
|
}
|
|
|
|
return [
|
|
`#### ${_.sample(spellNames)}`,
|
|
`*${_.sample(level)}-level ${_.sample(spellSchools)}*`,
|
|
'___',
|
|
'- **Casting Time:** 1 action',
|
|
`- **Range:** ${_.sample(['Self', 'Touch', '30 feet', '60 feet'])}`,
|
|
`- **Components:** ${components}`,
|
|
`- **Duration:** ${_.sample(['Until dispelled', '1 round', 'Instantaneous', 'Concentration, up to 10 minutes', '1 hour'])}`,
|
|
'',
|
|
'A flame, equivalent in brightness to a torch, springs from from an object that you touch. ',
|
|
'The effect look like a regular flame, but it creates no heat and doesn\'t use oxygen. ',
|
|
'A *continual flame* can be covered or hidden but not smothered or quenched.',
|
|
'\n\n\n'
|
|
].join('\n');
|
|
}
|
|
}; |