package main // A game of Mythic type Game struct { Name string Chaos int } // A character in a game type Character struct { Game Game Name string } // An entry in the fate table type Fate struct { Game *Game Odds int Chaos int Low int Middle int High int }