This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var iFileName = 'Homebrew Syntax - CompanionList.js' | |
RequiredSheetVersion('13.1.0') | |
CompanionList['panther companion'] = { | |
name: 'Panther Companion', | |
nameMenu: 'Companion (Panther)', | |
nameTooltip: 'the Panther companion', | |
nameOrigin: 'Panther creature', | |
source: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function 7(program,input){ | |
if(input==undefined){ | |
input=''; | |
} | |
var cmd=[]; | |
var stack=[]; | |
for(let i of program.split('\n')){ | |
cmd.push(i.split(' ').filter(x => x=='7').length); | |
} | |
stack.push(undefined); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const path = require('path'); | |
const webpack = require('webpack'); | |
const PnpWebpackPlugin = require('pnp-webpack-plugin'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const CaseSensitivePathsPlugin = require('case-sensitive-paths-webpack-plugin'); | |
const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin'); | |
const WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin'); | |
const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin'); |