Module:ErraCalendar/CurrentDate: Difference between revisions

From Errapedia
Jump to navigation Jump to search
(Created page with "-- This data table is referenced for what the wiki considers the current date of Erra. update the values assigned to "local current_year", "local current_month", and "local current_date" variables below as needed, but don't touch anything else or you may break the module. -- -- === Ranges === -- -- Date : 1 - 25 -- Month : 1 - 9 -- Year : 0 - ∞ local current_year = 1182 local current_month = 6 local current_date = 8 -- Don't touch anything below this line or you ris...")
(No difference)

Revision as of 14:30, 27 March 2023

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

-- This data table is referenced for what the wiki considers the current date of Erra. update the values assigned to "local current_year", "local current_month", and "local current_date" variables below as needed, but don't touch anything else or you may break the module.
--
-- === Ranges ===
-- 
-- Date : 1 - 25
-- Month : 1 - 9
-- Year : 0 - ∞

local current_year = 1182
local current_month = 6
local current_date = 8

-- Don't touch anything below this line or you risk breaking the module.

return {datatype="date", year=current_year, month=current_month, date=current_date}