root.hasTech, techType, techConfig

This commit is contained in:
DBotThePony 2023-04-23 23:54:08 +07:00
parent 2e22dd9922
commit 82c6d4254c
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -756,6 +756,29 @@ class Starbound : ISBFileLocator {
1
}
state.setTableFunction("createBiome", this) { args ->
TODO("createBiome")
}
state.setTableFunction("hasTech", this) { args ->
args.push(args.getString() in techs)
1
}
state.setTableFunction("techType", this) { args ->
val name = args.getString()
val tech = techs[name] ?: throw NoSuchElementException("No such tech $name")
args.push(tech.value.type)
1
}
state.setTableFunction("techConfig", this) { args ->
val name = args.getString()
val tech = techs[name] ?: throw NoSuchElementException("No such tech $name")
tech.push(args)
1
}
state.pop()
state.load(polyfill, "@starbound.jar!/scripts/polyfill.lua")