├── .gitignore ├── README.md ├── manifest.json ├── package.json ├── scripts └── index.js ├── src ├── Database.ts ├── index.ts ├── tables.ts └── tests.ts ├── texts ├── bg_BG.lang ├── cs_CZ.lang ├── da_DK.lang ├── de_DE.lang ├── el_GR.lang ├── en_GB.lang ├── en_US.lang ├── es_ES.lang ├── es_MX.lang ├── fi_FI.lang ├── fr_CA.lang ├── fr_FR.lang ├── hu_HU.lang ├── id_ID.lang ├── it_IT.lang ├── ja_JP.lang ├── ko_KR.lang ├── language_names.json ├── languages.json ├── nb_NO.lang ├── nl_NL.lang ├── pl_PL.lang ├── pt_BR.lang ├── pt_PT.lang ├── ru_RU.lang ├── sk_SK.lang ├── sv_SE.lang ├── tr_TR.lang ├── uk_UA.lang ├── zh_CN.lang └── zh_TW.lang └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/package.json -------------------------------------------------------------------------------- /scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/scripts/index.js -------------------------------------------------------------------------------- /src/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/src/Database.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/src/tables.ts -------------------------------------------------------------------------------- /src/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/src/tests.ts -------------------------------------------------------------------------------- /texts/bg_BG.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/bg_BG.lang -------------------------------------------------------------------------------- /texts/cs_CZ.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/cs_CZ.lang -------------------------------------------------------------------------------- /texts/da_DK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/da_DK.lang -------------------------------------------------------------------------------- /texts/de_DE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/de_DE.lang -------------------------------------------------------------------------------- /texts/el_GR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/el_GR.lang -------------------------------------------------------------------------------- /texts/en_GB.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/en_GB.lang -------------------------------------------------------------------------------- /texts/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/en_US.lang -------------------------------------------------------------------------------- /texts/es_ES.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/es_ES.lang -------------------------------------------------------------------------------- /texts/es_MX.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/es_MX.lang -------------------------------------------------------------------------------- /texts/fi_FI.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/fi_FI.lang -------------------------------------------------------------------------------- /texts/fr_CA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/fr_CA.lang -------------------------------------------------------------------------------- /texts/fr_FR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/fr_FR.lang -------------------------------------------------------------------------------- /texts/hu_HU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/hu_HU.lang -------------------------------------------------------------------------------- /texts/id_ID.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/id_ID.lang -------------------------------------------------------------------------------- /texts/it_IT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/it_IT.lang -------------------------------------------------------------------------------- /texts/ja_JP.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/ja_JP.lang -------------------------------------------------------------------------------- /texts/ko_KR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/ko_KR.lang -------------------------------------------------------------------------------- /texts/language_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/language_names.json -------------------------------------------------------------------------------- /texts/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/languages.json -------------------------------------------------------------------------------- /texts/nb_NO.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/nb_NO.lang -------------------------------------------------------------------------------- /texts/nl_NL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/nl_NL.lang -------------------------------------------------------------------------------- /texts/pl_PL.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/pl_PL.lang -------------------------------------------------------------------------------- /texts/pt_BR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/pt_BR.lang -------------------------------------------------------------------------------- /texts/pt_PT.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/pt_PT.lang -------------------------------------------------------------------------------- /texts/ru_RU.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/ru_RU.lang -------------------------------------------------------------------------------- /texts/sk_SK.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/sk_SK.lang -------------------------------------------------------------------------------- /texts/sv_SE.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/sv_SE.lang -------------------------------------------------------------------------------- /texts/tr_TR.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/tr_TR.lang -------------------------------------------------------------------------------- /texts/uk_UA.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/uk_UA.lang -------------------------------------------------------------------------------- /texts/zh_CN.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/zh_CN.lang -------------------------------------------------------------------------------- /texts/zh_TW.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/texts/zh_TW.lang -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smell-of-curry/bedrock-database/HEAD/tsconfig.json --------------------------------------------------------------------------------