aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md20
-rw-r--r--images/crafting.webpbin0 -> 107644 bytes
-rw-r--r--images/fighting.webpbin0 -> 437386 bytes
-rw-r--r--images/trading.webpbin0 -> 245714 bytes
-rw-r--r--src/main/generated/assets/potato-crime/lang/en_us.json4
-rw-r--r--src/main/kotlin/moe/nea/potatocrime/PotatoCrimeDataGenerator.kt2
6 files changed, 23 insertions, 3 deletions
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/).
+
+<details>
+
+<summary>Images</summary>
+
+![](images/crafting.webp)
+![](images/trading.webp)
+![](images/fighting.webp)
+
+</details>
+
diff --git a/images/crafting.webp b/images/crafting.webp
new file mode 100644
index 0000000..8e97ba5
--- /dev/null
+++ b/images/crafting.webp
Binary files differ
diff --git a/images/fighting.webp b/images/fighting.webp
new file mode 100644
index 0000000..d4997f1
--- /dev/null
+++ b/images/fighting.webp
Binary files differ
diff --git a/images/trading.webp b/images/trading.webp
new file mode 100644
index 0000000..4071fc3
--- /dev/null
+++ b/images/trading.webp
Binary files 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)
}