Require( "animob/animob.ts" ) return AnimobAconf({ version = 1, -- All aconf files have a version number. We will be backwards compatable default = "drink/drink_hot.aconf", object = { productName = "Coffee", appearance = { modelSettings = { glass = { colormap = "drink/t001dr1_creammug.jpg", }, liquid = { colormap = "drink/t002dr2b_cocoa.jpg", }, }, }, }, appKeys = { -- this table, if present, contains descriptions of what makes a drink special. drinkSpecialHow = { -- the name for each "How it's special" matters - it will be used below in the -- amISpecial table to say how the guy is special. -- -- Right now the only types implemented are ExtraSips, for which you give a number -- of sips to give the drink, or SpecialReaction, for which you give a name of one of -- emotions in the pilot animation triggers, below. -- In either case, you may give a specialName, which will totally override the -- normal name of the drink. large = { sips = 200, specialName = "Triple Coffee", }, }, -- this table, if present, describes the likelihood of a given drink being special. -- works like this: -- First, you give the size of your sample set, an integer. -- then, you give an idea of how many in that sample set would be special in what way. -- In this case, I am saying that for every 8 drinks, around 3 will be large, -- around 1 will be strong, and the rest (2) will be normal. drinkSpecialRatio = { sampleSize = 1024, breakdown = { { 250, "large" }, -- coffee has no extreme version! { 0, "strong" }, }, }, -- coffee has it's own special sip ratio sipSpecialRatio = { sampleSize = 1024, breakdown = { { 500, "uncommon" }, { 0, "extreme" }, }, }, reactionToSmileyMap = { { reactionSid = "reaction", smileySid = "coffee1", }, { reactionSid = "uncommonReaction", smileySid = "coffee2", }, }, }, })