Module:BassaridianCalendar: Difference between revisions

From MicrasWiki
Jump to navigationJump to search
No edit summary
No edit summary
Tag: Manual revert
Line 14: Line 14:


     local zodiacProverbs = {
     local zodiacProverbs = {
         Atosien = {
         Atosien = "The first light reveals the sacred cycle of renewal.",
            "In the first light, the cycle of renewal begins anew.",
         Eosena = "The dawn whispers: every step is a rebirth.",
            "Through wisdom, the sacred path is revealed.",
         Micrasha = "Wisdom is the balance of shadow and flame.",
            "Light burns through the fog of ignorance."},
         Pyreska = "Creation ignites in the fires of transformation.",
         Eosena = {
         Indomin = "Two paths intertwine: strength in unity, clarity in duality.",
            "Each dawn is a step towards divine understanding.",
         Chrysen = "Gold is the soul's test: will you hoard or share?",
            "Hope rises with the breaking of the day.",
         Thalassian = "The tides of Thalassiel teach patience and purpose.",
            "The morning light speaks of purpose."},
         Nephelia = "Dreams are stars, fleeting yet eternal in the night sky.",
         Micrasha = {
         Glinaeus = "The frost preserves what must endure.",
            "Balance is the foundation of wisdom.",
         Noctien = "Night guides those who seek the unseen truths.",
            "To lead is to find harmony in discord.",
         Opsithia = "The harvest feeds not just the body, but the spirit.",
            "Justice is measured in equal parts."},
         Stygian = "Through the Styx flows the essence of transformation.",
         Pyreska = {
         Faunian = "The forests sing of life and the balance it brings.",
            "Fire ignites the passion of creation.",
         Silenian = "Celebration is the nectar of divine abundance.",
            "Through flame, the world is reshaped.",
         Catosien = "Order shapes greatness; the straight path ascends."
            "Boldness is born in the furnace of challenge."},
         Indomin = {
            "Duality is the essence of existence.",
            "Strength grows in the embrace of change.",
            "Unity weaves the fabric of the cosmos."},
         Chrysen = {
            "Gold tests the purity of the soul.",
            "Wealth is a tool for those who wield it with wisdom.",
            "Abundance follows the diligent."},
         Thalassian = {
            "The tides teach patience and persistence.",
            "Wisdom flows with the currents of the sea.",
            "Depth reveals the mysteries of existence."},
         Nephelia = {
            "Dreams guide the soul to its true calling.",
            "Imagination bridges the mortal and divine.",
            "The night whispers secrets to the bold."},
         Glinaeus = {
            "Frost preserves what must endure.",
            "The cycles of time renew all things.",
            "Resilience grows in the cold."},
         Noctien = {
            "In shadows, clarity emerges.",
            "The night reveals what daylight obscures.",
            "Silence is the ally of discovery."},
         Opsithia = {
            "The harvest feeds both body and spirit.",
            "Fertility lies in the embrace of the earth.",
            "Abundance springs from gratitude."},
         Stygian = {
            "Transformation is the essence of the Styx.",
            "Through courage, rebirth is attained.",
            "The river flows with the promise of change."},
         Faunian = {
            "Nature sings of balance and harmony.",
            "Life thrives where nurture and care abound.",
            "The forest echoes with the pulse of life."},
         Silenian = {
            "Celebration renews the weary spirit.",
            "Revelry is a gift of the divine.",
            "Joy is the fruit of community."},
         Catosien = {
            "Discipline shapes greatness.",
            "Order is the path to enlightenment.",
            "The straight path leads to ascension."}
     }
     }


Line 123: Line 78:
     local eventKey = month .. "," .. dayInMonth
     local eventKey = month .. "," .. dayInMonth
     local event = events[eventKey] or "No significant events today."
     local event = events[eventKey] or "No significant events today."
 
     local dailyProverb = zodiacProverbs[zodiac]
     local zodiacProverbsList = zodiacProverbs[zodiac]
    local daySeed = ((totalDaysElapsed - 1) % #zodiacProverbsList) + 1
    local dailyProverb = zodiacProverbsList[daySeed]


     return dayOfYear .. ", " .. month .. " (" .. zodiac .. "), " .. psscYear .. " PSSC – " .. event .. " – Proverb: " .. dailyProverb
     return dayOfYear .. ", " .. month .. " (" .. zodiac .. "), " .. psscYear .. " PSSC – " .. event .. " – Proverb: " .. dailyProverb

Revision as of 03:51, 12 December 2024

Documentation for this module may be created at Module:BassaridianCalendar/doc

local p = {}

function p.getCurrentDate()
    local startDate = os.time({year = 1999, month = 8, day = 6})
    local secondsInDay = 86400
    local daysPerYear = 183

    local currentDate = os.time()
    local totalDaysElapsed = math.floor((currentDate - startDate) / secondsInDay)

    local yearFraction = totalDaysElapsed / daysPerYear
    local psscYear = math.floor(yearFraction)
    local dayOfYear = math.floor((yearFraction - psscYear) * daysPerYear) + 1

    local zodiacProverbs = {
        Atosien = "The first light reveals the sacred cycle of renewal.",
        Eosena = "The dawn whispers: every step is a rebirth.",
        Micrasha = "Wisdom is the balance of shadow and flame.",
        Pyreska = "Creation ignites in the fires of transformation.",
        Indomin = "Two paths intertwine: strength in unity, clarity in duality.",
        Chrysen = "Gold is the soul's test: will you hoard or share?",
        Thalassian = "The tides of Thalassiel teach patience and purpose.",
        Nephelia = "Dreams are stars, fleeting yet eternal in the night sky.",
        Glinaeus = "The frost preserves what must endure.",
        Noctien = "Night guides those who seek the unseen truths.",
        Opsithia = "The harvest feeds not just the body, but the spirit.",
        Stygian = "Through the Styx flows the essence of transformation.",
        Faunian = "The forests sing of life and the balance it brings.",
        Silenian = "Celebration is the nectar of divine abundance.",
        Catosien = "Order shapes greatness; the straight path ascends."
    }

    local month, dayInMonth, zodiac
    if dayOfYear <= 61 then
        month = "Atosiel"
        dayInMonth = dayOfYear
        if dayInMonth <= 12 then zodiac = "Atosien"
        elseif dayInMonth <= 24 then zodiac = "Eosena"
        elseif dayInMonth <= 36 then zodiac = "Micrasha"
        elseif dayInMonth <= 48 then zodiac = "Pyreska"
        else zodiac = "Indomin" end
    elseif dayOfYear <= 122 then
        month = "Thalassiel"
        dayInMonth = dayOfYear - 61
        if dayInMonth <= 12 then zodiac = "Chrysen"
        elseif dayInMonth <= 24 then zodiac = "Thalassian"
        elseif dayInMonth <= 36 then zodiac = "Nephelia"
        elseif dayInMonth <= 48 then zodiac = "Glinaeus"
        else zodiac = "Noctien" end
    else
        month = "Opsitheiel"
        dayInMonth = dayOfYear - 122
        if dayInMonth <= 12 then zodiac = "Opsithia"
        elseif dayInMonth <= 24 then zodiac = "Stygian"
        elseif dayInMonth <= 36 then zodiac = "Faunian"
        elseif dayInMonth <= 48 then zodiac = "Silenian"
        else zodiac = "Catosien" end
    end

    local events = {
        ["Atosiel,6"] = "Bayram al-Nur (Festival of Light) [Vaeringheim]",
        ["Atosiel,18"] = "Chag Or Hadash (Festival of New Light) [Luminaria]",
        ["Atosiel,30"] = "Symposion Eirinis (Symposium of Harmony) [Serena]",
        ["Atosiel,43"] = "Alev Günü (Day of Flame) [Pyralis]",
        ["Atosiel,55"] = "Tikkun Tzel (Repair of Shadows) [Symphonara]",
        ["Thalassiel,67"] = "Panegyris Chrysou (Golden Gathering) [Aurelia]",
        ["Thalassiel,80"] = "Mehtap Dalgası (Moonlit Tide) [Vaeringheim]",
        ["Thalassiel,92"] = "Oneiro Foteino (Dream of Illumination) [Somniumpolis]",
        ["Thalassiel,105"] = "Erev Galgal (Eve of Cycles) [Nexa]",
        ["Thalassiel,115"] = "Leilat al-Kamar (Night of the Moon) [Lunalis Sancta]",
        ["Opsitheiel,128"] = "Chag Tvuah (Festival of Harvest) [Sylvapolis]",
        ["Opsitheiel,140"] = "Anagenesis Eirmos (Procession of Rebirth) [Acheron]",
        ["Opsitheiel,150"] = "Panagia Therizis (Holy Day of the Reaper) [Sylvapolis]",
        ["Opsitheiel,165"] = "Karnavali Thysias (Carnival of Celebration) [Erythros]",
        ["Opsitheiel,175"] = "Sefar Yashar (Straight Path Celebration) [Catonis Atrium]"
    }

    local eventKey = month .. "," .. dayInMonth
    local event = events[eventKey] or "No significant events today."
    local dailyProverb = zodiacProverbs[zodiac]

    return dayOfYear .. ", " .. month .. " (" .. zodiac .. "), " .. psscYear .. " PSSC – " .. event .. " – Proverb: " .. dailyProverb
end

return p