From 2105991a3ff36cf3c02795919b751d4db782083a Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Tue, 2 Apr 2024 03:39:44 +0200 Subject: Add README --- README.md | 20 ++++++++++++++++++++ images/crafting.webp | Bin 0 -> 107644 bytes images/fighting.webp | Bin 0 -> 437386 bytes images/trading.webp | Bin 0 -> 245714 bytes .../generated/assets/potato-crime/lang/en_us.json | 4 ++-- .../moe/nea/potatocrime/PotatoCrimeDataGenerator.kt | 2 +- 6 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 images/crafting.webp create mode 100644 images/fighting.webp create mode 100644 images/trading.webp diff --git a/README.md b/README.md index e69de29..40d9e8e 100644 --- a/README.md +++ b/README.md @@ -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/). + +
+ +Images + +![](images/crafting.webp) +![](images/trading.webp) +![](images/fighting.webp) + +
+ diff --git a/images/crafting.webp b/images/crafting.webp new file mode 100644 index 0000000..8e97ba5 Binary files /dev/null and b/images/crafting.webp differ diff --git a/images/fighting.webp b/images/fighting.webp new file mode 100644 index 0000000..d4997f1 Binary files /dev/null and b/images/fighting.webp differ diff --git a/images/trading.webp b/images/trading.webp new file mode 100644 index 0000000..4071fc3 Binary files /dev/null and b/images/trading.webp differ 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) } -- cgit