Flatten commits

This commit is contained in:
Nick Walton 2021-05-06 08:13:50 -06:00
commit d3e719f743
19 changed files with 700 additions and 0 deletions

View file

@ -0,0 +1,13 @@
// Checkout the repo examples to get an idea of other ways you can use scripting
// https://github.com/latitudegames/Scripting/blob/master/examples
const modifier = (text) => {
state.inventory = [{name: 'candy', quantity: 1}, {name: 'Turtles', quantity: 240}]
return { text }
}
// Don't modify this part
modifier(text)