Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Easter egg.story about time traveller #5864

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion data/lang/module-easteregg-message/en.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"FLAVOUR_0_BODY": {
"description": "This is a very rare string, that's part of an 'Easter egg'. This specific one is a reference to the song by AC/DC",
"description": "This is a very rare string, that's part of an 'Easter egg'. This specific one is a reference to the song by AC/DC. It is formated as a list",
"message": "Just ring 36 24 36, I'm always home. I deal in:\n - Concrete shoes,\n - Cyanide,\n - TNT,\n - Neck ties,\n - Contracts,\n - High voltage,\n\n ...or just make a social call."
},
"FLAVOUR_0_DESC": {
Expand All @@ -22,5 +22,17 @@
"FLAVOUR_1_TITLE": {
"description": "A very rare Easter egg, and reference to a line from a famous song.",
"message": "NEED SOMEONE TO TURN TO?"
},
"FLAVOUR_2_BODY": {
"description": "A very rare easter egg, referencing a online myth from 90s: https://en.wikipedia.org/wiki/John_Titor",
"message": "I'm John Titor of the Time Travel Institute, from the year 4036. I'm heading to 1975 to pick up an IBM 5100 computer to degbug legacy computer programs that haven't been ported properly to the machines of my time, but I'm stopping by here to collect information about your time before it's lost in the great calamity.\n\nI intend to return with a six part description on what's needed for time machines to operate. In short, my time machine is a stationary mass, temporal displacement unit, powered by two top-spin dual-positive singularities that produce a standard off-set tipler sinusoid. The displacement unit moves through time, not space.\n\nI will be happy to post pictures of the unit upon request."
},
"FLAVOUR_2_DESC": {
"description": "Note: string has quotes",
"message": "'If time travel is real, where are all the time travelers?'"
},
"FLAVOUR_2_TITLE": {
"description": "A very rare Easter egg, referencing Internet myth of John Titor.",
"message": "People of the past, be wary of the GREAT CALAMITY!"
}
}
2 changes: 1 addition & 1 deletion data/modules/EasterEgg/Message.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ local Event = require 'Event'
local Serializer = require 'Serializer'

local l = Lang.GetResource("module-easteregg-message")
local max_flavour_index = 1
local max_flavour_index = 2

local flavours = {}
for i = 0,max_flavour_index do
Expand Down