diff options
-rw-r--r-- | README.md | 20 | ||||
-rw-r--r-- | images/crafting.webp | bin | 0 -> 107644 bytes | |||
-rw-r--r-- | images/fighting.webp | bin | 0 -> 437386 bytes | |||
-rw-r--r-- | images/trading.webp | bin | 0 -> 245714 bytes | |||
-rw-r--r-- | src/main/generated/assets/potato-crime/lang/en_us.json | 4 | ||||
-rw-r--r-- | src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt | 2 |
6 files changed, 23 insertions, 3 deletions
@@ -0,0 +1,20 @@ +# Potato Crimes + +A mod for the [24w14potato April Fools Snapshot](https://www.minecraft.net/en-us/article/poisonous-potato-update). + +> In this mod, carrots are illegal contraband, and transporting it across dimensions is a crime punishable by death. +> +> Can you smuggle carrots into the potato dimension, and trade them to the local villagers who want some diversity in their stews and other dishes? + +Made in about 3 or so hours for [the 24w14potato ModFest FlashFest](https://modfest.net/). + +<details> + +<summary>Images</summary> + +![](images/crafting.webp) +![](images/trading.webp) +![](images/fighting.webp) + +</details> + diff --git a/images/crafting.webp b/images/crafting.webp Binary files differnew file mode 100644 index 0000000..8e97ba5 --- /dev/null +++ b/images/crafting.webp diff --git a/images/fighting.webp b/images/fighting.webp Binary files differnew file mode 100644 index 0000000..d4997f1 --- /dev/null +++ b/images/fighting.webp diff --git a/images/trading.webp b/images/trading.webp Binary files differnew file mode 100644 index 0000000..4071fc3 --- /dev/null +++ b/images/trading.webp diff --git a/src/main/generated/assets/potato-crime/lang/en_us.json b/src/main/generated/assets/potato-crime/lang/en_us.json index 7f8fa71..766a7a5 100644 --- a/src/main/generated/assets/potato-crime/lang/en_us.json +++ b/src/main/generated/assets/potato-crime/lang/en_us.json @@ -1,9 +1,9 @@ { "entity.potato-crime.potato_guard": "Potato Guard", - "item.potato-crime.contraband": "Contraband", + "item.potato-crime.contraband": "Smugglers Brown Paper Bag", "potato-crime.text.arrest": "You broke the law by bringing carrots into this potato dimension!", "potato-crime.text.fill-level": "Hidden carrots: %s/1000.", "potato-crime.text.item-group": "Potato Crimes", "potato-crime.text.no-carrots": "No carrots to deposit.", - "potato-crime.text.trade": "You got that good stuff. Here, have an emerald." + "potato-crime.text.trade": "Oh, you got that good stuff! Here, have some emeralds." }
\ No newline at end of file diff --git a/src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt b/src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt index 3e87a49..b268a2f 100644 --- a/src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt +++ b/src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt @@ -76,7 +76,7 @@ class NameProvider(dataOutput: FabricDataOutput, registryLookup: CompletableFutu translationBuilder: TranslationBuilder ) { translationBuilder.add(PotatoRegistry.potatoGuard, "Potato Guard") - translationBuilder.add(PotatoRegistry.contraband, "Contraband") + translationBuilder.add(PotatoRegistry.contraband, "Smugglers Brown Paper Bag") PotatoTranslations.allTranslations.forEach { translationBuilder.add(it.translationKey, it.default) } |