Flatten commits
This commit is contained in:
commit
d3e719f743
19 changed files with 700 additions and 0 deletions
13
examples/skills.js
Normal file
13
examples/skills.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
//input modifiers to set up skills
|
||||
|
||||
//creates skills with 5 skill points (for input modifier)
|
||||
const modifier = (text) => {
|
||||
state.skills = {'turtle':1}
|
||||
state.skillPoints = 5
|
||||
state.disableRandomSkill = true
|
||||
return ({text})
|
||||
}
|
||||
|
||||
// Don't modify this part
|
||||
modifier(text)
|
||||
|
Reference in a new issue