MEDAL[1] = { "Pasta Lover", "Obtain some yummy pasta.", 5 }
MEDAL[2] = { "Panty Thief", "Steal some underwear.", 10 }
MEDAL[3] = { "Pig Molester", "Bother a harmless pig.", 5 }
MEDAL[4] = { "Crisis", "Drop into crisis mode for the first time.", 5 }
MEDAL[5] = { "Error", "...", 20 }
Couldn't you technically do this for the table value definitions?
It's a bit more confusing, but...
MEDAL = {
{ "Pasta Lover", "Obtain some yummy pasta.", 5 },
{ "Panty Thief", "Steal some underwear.", 10 },
{ "Pig Molester", "Bother a harmless pig.", 5 },
{ "Crisis", "Drop into crisis mode for the first time.", 5},
{ "Error", "...", 20 }
}
That would create table rows, would it not?
I know it's slightly impractical...
Wasn't quizzing anyone, by the way...
I was just curious if I learned that correctly.