UNPKG

slanted-gamedev-toolz

Version:

A slanted mix of tools for your brilliant ideas in game design.

98 lines (97 loc) 2.57 kB
export const startingCards = [ { headName: "Cat", infoSection: "The cat is cuddly", code: "cat", type: "Animal", emoji: "🐈", slider: { leftStat: "Cute", rightStat: "Manly", value: 39 }, }, { headName: "Mass Appeal", infoSection: "Marketable to a broad audience.", code: "MassAppeal", type: "Profit Potential", emoji: "🌟🎤", }, { headName: "The One Ring", infoSection: "An evil ring. An evil ring. An evil ring. An evil ring. An evil ring. An evil ring. An evil ring.", code: "TheOneRing", type: "Profit Potential", emoji: "🪙💍", }, { headName: "Lorem Ipsum", infoSection: ` Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virgini.`, code: "LoremIpsum", type: "Profit Potential", emoji: "🤔🌟", }, ]; export const boxingPunchCards = [ { headName: "Jab", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "👊", tier: "s", }, { headName: "Straight", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "👊", tier: "a", }, { headName: "Hook", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "🤜 ", tier: "b", }, { headName: "Uppercut", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "✊", tier: "c", }, { headName: "Uppercut", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "✊", tier: "d", }, { headName: "Uppercut", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Head", emoji: "✊", }, { headName: "Uppercut", infoSection: "A smashing blow.", code: "MassAppeal", type: "Punch", target: "Body", emoji: "✊", tier: "f", }, ]; export const massAppealDeck = [...startingCards];