14 lines
345 B
JavaScript
14 lines
345 B
JavaScript
|
|
||
|
// 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)
|