This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
AIDScripting/examples/skills.js

13 lines
308 B
JavaScript
Raw Permalink Normal View History

2021-05-06 08:13:50 -06:00
//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)