Skip to content

Commit

Permalink
Sleep well sweet Mylo, I've loved you since the day you came to me an…
Browse files Browse the repository at this point in the history
…d will love you till the day I join you
  • Loading branch information
MysticKoko committed Jun 24, 2024
1 parent 132f947 commit a95d2f5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/generated/resources/assets/hybrid-aquatic/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@
"hybrid-aquatic.sea_message.fishenjoe": "Give a man a fish and you'll feed him for a day,\nkill a man and you'll have one less homeless person begging you for fish.",
"hybrid-aquatic.sea_message.kaupenjoe": "It is better to sail the seven sea, than to get STDs.",
"hybrid-aquatic.sea_message.loss": "| ||\n|| |_",
"hybrid-aquatic.sea_message.mylo": "Mylo, you are the best friend I could have ever hoped to have. \nRest in peace, my sweet prince. I hope you have sweet dreams and find the peace you deserve.",
"hybrid-aquatic.sea_message.mylo.title": "The Best Boy",
"hybrid-aquatic.sea_message.one_piece": "THE ONE PIECE IS REAL",
"hybrid-aquatic.sea_message.one_piece.title": "One Piece",
"hybrid-aquatic.sea_message.poke": "I like cheese",
Expand Down Expand Up @@ -204,6 +206,7 @@
"item.hybrid-aquatic.cooked_lobster": "Cooked Lobster",
"item.hybrid-aquatic.cooked_shrimp": "Cooked Shrimp",
"item.hybrid-aquatic.cooked_tentacle": "Cooked Tentacle",
"item.hybrid-aquatic.coral_blade": "Coral Blade",
"item.hybrid-aquatic.cowfish": "Cowfish",
"item.hybrid-aquatic.cowfish_spawn_egg": "Cowfish Spawn Egg",
"item.hybrid-aquatic.crayfish_spawn_egg": "Crayfish Spawn Egg",
Expand All @@ -213,6 +216,7 @@
"item.hybrid-aquatic.cuttlefish_spawn_egg": "Cuttlefish Spawn Egg",
"item.hybrid-aquatic.danio": "Danio",
"item.hybrid-aquatic.danio_spawn_egg": "Danio Spawn Egg",
"item.hybrid-aquatic.dead_coral_blade": "Dead Coral Blade",
"item.hybrid-aquatic.discus": "Discus",
"item.hybrid-aquatic.discus_spawn_egg": "Discus Spawn Egg",
"item.hybrid-aquatic.diving_boots": "Diving Boots",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"author": "MysticKoko",
"has_title": true,
"translation_key": "hybrid-aquatic.sea_message.mylo"
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import net.fabricmc.fabric.api.datagen.v1.provider.FabricDynamicRegistryProvider
import net.minecraft.registry.RegistryKey
import net.minecraft.registry.RegistryWrapper
import net.minecraft.util.Identifier
import java.util.Optional
import java.util.*
import java.util.concurrent.CompletableFuture

class SeaMessageProvider(output: FabricDataOutput, registriesFuture: CompletableFuture<RegistryWrapper.WrapperLookup>) : FabricDynamicRegistryProvider(output, registriesFuture) {
Expand Down Expand Up @@ -39,7 +39,8 @@ class SeaMessageProvider(output: FabricDataOutput, registriesFuture: Completable
GeneratedSeaMessageData("loss", "| ||\n|| |_"),
GeneratedSeaMessageData("warranty", "We've been trying to reach you about your car's extended warranty.", englishTitle = "IMPORTANT: PLEASE READ"),
GeneratedSeaMessageData("poke", "I like cheese", "Poke", englishTitle = "Cheese"),
GeneratedSeaMessageData("one_piece", "THE ONE PIECE IS REAL", "Poke", englishTitle = "One Piece")
GeneratedSeaMessageData("one_piece", "THE ONE PIECE IS REAL", "Poke", englishTitle = "One Piece"),
GeneratedSeaMessageData("mylo", "Mylo, you are the best friend I could have ever hoped to have. \nRest in peace, my sweet prince. I hope you have sweet dreams and find the peace you deserve.", "MysticKoko", englishTitle = "The Best Boy"),
)
}
}

0 comments on commit a95d2f5

Please sign in to comment.