MCDM Wiki
Advertisement

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

-- This module contains episode metadata for all MCDM shows. This should be
-- referenced in other modules & templates where episode metadata is needed

-- ONE EPISODE METADATA SHEET TO RULE THEM ALL

--Data structure
--
--table(a table of shows)
--|- show = table (a table of metadata about show)
--	|- show_name = string (the name of the show)
--	|- episodes = array (an array containing 1 object per episode of show)
--		|- n = table (a table containing metadata about the n'th episode of show)
--			|- name = string (the episode's name)
--			|- airdate = string (the episode's airdate returned by os.time)
--			|- blurb = string (a 1-sentence description of the episode)
--			|- twitch_vod = string (url of the twitch vod)
--			|- youtube_vod = string (url of the youtube vod)
--			|- campaign_diary = string (url of the campaign diary video)



return {

-- THE CHAIN EPISODES =====================================================    

    chain = {
        show_name = "The Chain",
        episodes = {
            [1] = {
                name = "Red Sky at Morning",
                airdate = os.time{year=2019, month=1, day=30, hour=19},
                blurb = "The Chain makes an assassination attempt on Mortum.",
                twitch_vod = "https://www.twitch.tv/videos/372684813",
                youtube_vod = "https://www.youtube.com/watch?v=l6u_VDYpI3g",
                campaign_diary = "https://www.youtube.com/watch?v=60yA7TofHEM"
            },
            [2] = {
                name = "Soldier Take Warning",
                airdate = os.time{year=2019, month=2, day=6, hour=19},
                blurb = "The Chain negotiate passage.",
                twitch_vod = "https://www.twitch.tv/videos/376401828",
                youtube_vod = "https://www.youtube.com/watch?v=S4iu22C_PuY",
                campaign_diary = "https://www.youtube.com/watch?v=GYF9L5t-AI8"
            },
            [3] = {
                name = "Sailors on the Sea of Stars",
                airdate = os.time{year=2019, month=2, day=13, hour=19},
                blurb = "The Chain of Acheron defend the Rosso Cielo from a dark dream.",
                twitch_vod = "https://www.twitch.tv/videos/380327325",
                youtube_vod = "https://www.youtube.com/watch?v=DfPbV0MdbOM",
                campaign_diary = "https://www.youtube.com/watch?v=oSjnIFoQaAY" 
            },
            [4] = {
                name = "A Dark Dream",
                airdate = os.time{year=2019, month=2, day=20, hour=19},
                blurb = "The Battle for the Dark Dream continues.",
                twitch_vod = "https://www.twitch.tv/videos/384122061",
                youtube_vod = "https://www.youtube.com/watch?v=XEVGztx2VcU",
                campaign_diary = "https://www.youtube.com/watch?v=eiOCvT4UoP0"
            },
            [5] = {
                name = "The God Factor",
                airdate = os.time{year=2019, month=2, day=27, hour=19},
                blurb = "Nails gets hammered.",
                twitch_vod = "https://www.twitch.tv/videos/387846263",
                youtube_vod = "https://www.youtube.com/watch?v=Y3jZgnAdt2M",
                campaign_diary = "https://www.youtube.com/watch?v=LY8LoKY8J1g"
            }
        }
    },

-- RUNNING THE GAME EPISODES =============================================

    rtg = {
        show_name = "Running the Game",
        episodes = {
            [0] = { 
                name = "Intro: Running the Game",
                airdate = os.time{year=2016, month=2, day=21},
                url = "https://www.youtube.com/watch?v=e-YZvLUXcR8" 
            },
            [1] = {
                name = "Your First Adventure",
                airdate = os.time{year=2016, month=2, day= 21},
                url = "https://www.youtube.com/watch?v=zTD2RZz6mlo"
            },
            [2] = {
                name = "Your First Session",
                airdate = os.time{year=2016, month=2, day=21},
                url = "https://www.youtube.com/watch?v=1K8hGhpQzKg"
            },
            [3] = {
                name = "Running your First Dungeon",
                airdate = os.time{year=2016, month=2, day=21},
                url = "https://www.youtube.com/watch?v=jvQXGs8IVBM"
            },
            [4] = {
                name = "Making Characters",
                airdate = os.time{year=2016, month=2, day=28},
                url = "https://www.youtube.com/watch?v=0K9mKpAMREU"
            },
            [5] = {
                name = "Why Do We Play D&D?",
                airdate = os.time{year=2016, month=3, day=2},
                url = "https://www.youtube.com/watch?v=Ama2wMxq84o"
            },
            [6] = {
                name = "Campaign 101, Your Town",
                airdate = os.time{year=2016, month=3, day=7},
                url = "https://www.youtube.com/watch?v=nTbD1GJUFC0"
            },
            [7] = {
                name = "Dead Ends",
                airdate = os.time{year=2016, month=3, day=10},
                url = "https://www.youtube.com/watch?v=Uw-j-vjEAAo"
            },
            [8] = {
                name = "The Sociology of D&D",
                airdate = os.time{year=2016, month=3, day=14},
                url = "https://www.youtube.com/watch?v=EHUCi6ZbVxU"
            },
            [9] = {
                name = "The DM Screen",
                airdate = os.time{year=2016, month=3, day=21},
                url = "https://www.youtube.com/watch?v=aO0HMmrZ4xs"
            },
            [10] = {
                name = "The Deck of Many Things",
                airdate = os.time{month=2016, month=3, day=24},
                url = "https://www.youtube.com/watch?v=b5pz46kEhIM"
            },
        }
    },

-- OD&D EPISODES =========================================================

    odd = {
        show_name = "OD&D",
        episodes = {}
        },

-- WORLDBUILDING EPISODES ================================================

    worldbuilding = {
        show_name = "Worldbuilding Streams",
        episodes = {
            [1] = {
                name = "",
                airdate = "",
                url = ""
            }
        }
    },

-- NETHACK EPISODES =====================================================

    nethack = {
        show_name = "NetHack",
        episodes = {
            [1] = {
                name = "",
                airdate = "",
                url = ""
            }
        }
    },

-- LAST GAME WINS EPISODES ==============================================

    lgw = {
        show_name = "Last Game Wins",
        episodes = {
            [1] = {
                name = "",
                airdate = "",
                url = ""
            }
        }
    }

}
Advertisement