aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/potatocrime/registry/PotatoTranslations.kt
blob: 0f1f0412931cc48b11549637c256ca18b5e6288f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package moe.nea.potatocrime.registry

import net.minecraft.text.MutableText
import net.minecraft.text.Text

object PotatoTranslations {
    val allTranslations = mutableListOf<PT>()

    data class PT(val name: String, val default: String) {
        fun format(vararg params: String): MutableText {
            return Text.translatable(translationKey, *params)
        }

        val translationKey = "potato-crime.text.$name"

        init {
            allTranslations.add(this)
        }
    }

    val noCarrotsToDeposit = PT("no-carrots", "No carrots to deposit.")
    val itemGroup = PT("item-group", "Potato Crimes")
    val contrabandFillText = PT("fill-level", "Hidden carrots: %s/1000.")
    val youBrokeTheLaw = PT("arrest", "You broke the law by bringing carrots into this potato dimension!")
    val villagerTrade = PT("trade","Oh, you got that good stuff! Here, have some emeralds.")
}