From 9b67b0a9423817a3fdbaaca988c23a456a72e495 Mon Sep 17 00:00:00 2001 From: MysticKoko <132279944+MysticKoko@users.noreply.github.com> Date: Tue, 31 Dec 2024 19:24:24 +0200 Subject: [PATCH] Added Palestinian messages in bottles --- .../resources/assets/hybrid-aquatic/lang/en_us.json | 6 ++++++ .../hybrid-aquatic/sea_message/free_gaza.json | 5 +++++ .../hybrid-aquatic/sea_message/free_palestine.json | 5 +++++ .../hybrid-aquatic/sea_message/river_to_sea.json | 5 +++++ .../aquatic/data/server/seamessage/SeaMessageProvider.kt | 3 +++ 5 files changed, 24 insertions(+) create mode 100644 src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_gaza.json create mode 100644 src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_palestine.json create mode 100644 src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/river_to_sea.json diff --git a/src/generated/resources/assets/hybrid-aquatic/lang/en_us.json b/src/generated/resources/assets/hybrid-aquatic/lang/en_us.json index ebf2008a..d27aa208 100644 --- a/src/generated/resources/assets/hybrid-aquatic/lang/en_us.json +++ b/src/generated/resources/assets/hybrid-aquatic/lang/en_us.json @@ -234,6 +234,10 @@ "hybrid-aquatic.sea_message.cryptic_gun_message": "< You/We wield the Gun/You >", "hybrid-aquatic.sea_message.cryptic_gun_message.title": "Hotline", "hybrid-aquatic.sea_message.dylan": "You are a worm through time.\nThe thunder song distorts you.\nHappiness comes.\nWhite pearls, but yellow and red in the eye.\nThrough a mirror, inverted is made right.\nLeave your insides by the door.\nPush the fingers through the surface into the wet.\nYou’ve always been the new you.\nYou want this to be true.\nWe stand around you while you dream.\nYou can almost hear our words but you forget.\nThis happens more and more now.\nYou gave us the permission in your regulations.\nWe wait in the stains.\nThe word that describes this is redacted.\nRepeat the word.\nThe name of the sound.\nIt resonates in your house.\nAfter the song, time for applause.\nWe build you till nothing remains.\nThe egg cracks and the truth will emerge out of you.\nYou are home.\nYou remind us of home.\nYou’ve taken your boss with your boss with you.\nAll hair must be eaten.\nUnder the conceptual reality behind this reality you must want these waves to drag you away.\nAfter the song, time for applause.\nThis cliché is death out of time, breaking the first the second the third the fourth wall, the fifth wall, floor; no floor: you fall!\nHow do you say “insane”?\nHurts to be happy.\nAn earworm is a tune you can’t stop humming in a dream: \"Baby baby baby, yeah.\"\nJust plastic.\nSo safe and nothing to worry about.\nHa ha, funny.\nThe last egg breaks now.\nThe hole in your room is a hole in you.\nYou came and we let you in through the hole in you.\nYou have always been here, the only child.\nA copy of a copy of a copy.\nOrange peel.\nThe picture is you holding the picture.\nWhen you hear this you will know you’re in new you.\nYou want to listen.\nYou want to dream.\nYou want to smile.\nYou want to hurt.\nYou don’t want to be.", + "hybrid-aquatic.sea_message.free_gaza": "#FreeGaza", + "hybrid-aquatic.sea_message.free_gaza.title": "Freedom", + "hybrid-aquatic.sea_message.free_palestine": "#FreePalestine", + "hybrid-aquatic.sea_message.free_palestine.title": "Freedom", "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", @@ -243,6 +247,8 @@ "hybrid-aquatic.sea_message.poke.title": "Cheese", "hybrid-aquatic.sea_message.poyo": "I hate litterbugs.", "hybrid-aquatic.sea_message.rick_roll": "Never gonna give you up!\nNever gonna let you down!\nNever gonna run around and desert you!", + "hybrid-aquatic.sea_message.river_to_sea": "From the river to the sea, Palestine will be free!", + "hybrid-aquatic.sea_message.river_to_sea.title": "River To Sea", "hybrid-aquatic.sea_message.the_creepers_code": "The creepers have a code...", "hybrid-aquatic.sea_message.the_creepers_code.title": "The Creeper's Code", "hybrid-aquatic.sea_message.threats": "Try to counter unanticipated threats by anticipating them", diff --git a/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_gaza.json b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_gaza.json new file mode 100644 index 00000000..dbc44aab --- /dev/null +++ b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_gaza.json @@ -0,0 +1,5 @@ +{ + "has_title": true, + "infinite": false, + "translation_key": "hybrid-aquatic.sea_message.free_gaza" +} \ No newline at end of file diff --git a/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_palestine.json b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_palestine.json new file mode 100644 index 00000000..c2cab332 --- /dev/null +++ b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/free_palestine.json @@ -0,0 +1,5 @@ +{ + "has_title": true, + "infinite": false, + "translation_key": "hybrid-aquatic.sea_message.free_palestine" +} \ No newline at end of file diff --git a/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/river_to_sea.json b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/river_to_sea.json new file mode 100644 index 00000000..6e9594c2 --- /dev/null +++ b/src/generated/resources/data/hybrid-aquatic/hybrid-aquatic/sea_message/river_to_sea.json @@ -0,0 +1,5 @@ +{ + "has_title": true, + "infinite": false, + "translation_key": "hybrid-aquatic.sea_message.river_to_sea" +} \ No newline at end of file diff --git a/src/main/kotlin/dev/hybridlabs/aquatic/data/server/seamessage/SeaMessageProvider.kt b/src/main/kotlin/dev/hybridlabs/aquatic/data/server/seamessage/SeaMessageProvider.kt index 52aef422..0644c285 100644 --- a/src/main/kotlin/dev/hybridlabs/aquatic/data/server/seamessage/SeaMessageProvider.kt +++ b/src/main/kotlin/dev/hybridlabs/aquatic/data/server/seamessage/SeaMessageProvider.kt @@ -46,6 +46,9 @@ class SeaMessageProvider(output: FabricDataOutput, registriesFuture: Completable GeneratedSeaMessageData("cryptic_gun_message", "< You/We wield the Gun/You >", "The Board", englishTitle = "Hotline"), GeneratedSeaMessageData("boo", "Boo"), GeneratedSeaMessageData("yashaa", "Why are you crying on a nice day like today? I mean, it's even snowing...", "Yashaa", englishTitle = "Cepriestess"), + GeneratedSeaMessageData("river_to_sea", "From the river to the sea, Palestine will be free!", englishTitle = "River To Sea"), + GeneratedSeaMessageData("free_palestine", "#FreePalestine", englishTitle = "Freedom"), + GeneratedSeaMessageData("free_gaza", "#FreeGaza", englishTitle = "Freedom"), GeneratedSeaMessageData("control_oop", "Objects of Power shape reality around us. Handle with care.", author = "FBC", englishTitle = "Object of Power: Sea Message"), GeneratedSeaMessageData("dylan", """ You are a worm through time.