UNPKG

twinoid-goals

Version:

A simple, straight-forward package containing everything you need to handle Twinoid goals.

125 lines (124 loc) 98.4 kB
declare const Languages: readonly ["en", "fr", "de", "es"]; type Language = typeof Languages[number]; interface Goal { id: string; name: Record<Language, string>; description?: Record<Language, string>; rare: number; hidden?: boolean; unlocks: Unlock[]; } interface Unlock { count: number; points: number; icon?: string; title?: Record<Language, string>; description?: Record<Language, string>; prefix?: boolean; suffix?: boolean; } declare const alphabounce: { goals: Record<"planets" | "earth" | "mission" | "map" | "escorp" | "furi", Goal>; get: (id: "planets" | "earth" | "mission" | "map" | "escorp" | "furi") => Goal; getUnlocked: (id: "planets" | "earth" | "mission" | "map" | "escorp" | "furi", points: number) => Unlock[]; }; declare const croquemotel: { goals: Record<"hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "lab", Goal>; get: (id: "hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "lab") => Goal; getUnlocked: (id: "hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "lab", points: number) => Unlock[]; }; declare const dinorpg: { goals: Record<"perle" | "pteroz" | "hippo" | "rocky" | "quetzu" | "tour" | "vener" | "taurus" | "msg" | "magnet" | "plume" | "kaura" | "demon" | "pmi" | "pda" | "dicarb" | "tid1" | "belius" | "caush" | "fmedal" | "labowi" | "moves" | "deaths" | "pdays" | "lvlup" | "killm" | "killd" | "healpv" | "upwood" | "upfire" | "upthun" | "upair" | "upwatr" | "brkpel" | "chasse" | "cueill" | "peche" | "energy" | "fouill" | "market" | "sbuyer" | "clans" | "beauty" | "gdcatt" | "gdcdef" | "bgum" | "medgol" | "medsil" | "medbro" | "medpla" | "lvlup1" | "lvlup2", Goal>; get: (id: "perle" | "pteroz" | "hippo" | "rocky" | "quetzu" | "tour" | "vener" | "taurus" | "msg" | "magnet" | "plume" | "kaura" | "demon" | "pmi" | "pda" | "dicarb" | "tid1" | "belius" | "caush" | "fmedal" | "labowi" | "moves" | "deaths" | "pdays" | "lvlup" | "killm" | "killd" | "healpv" | "upwood" | "upfire" | "upthun" | "upair" | "upwatr" | "brkpel" | "chasse" | "cueill" | "peche" | "energy" | "fouill" | "market" | "sbuyer" | "clans" | "beauty" | "gdcatt" | "gdcdef" | "bgum" | "medgol" | "medsil" | "medbro" | "medpla" | "lvlup1" | "lvlup2") => Goal; getUnlocked: (id: "perle" | "pteroz" | "hippo" | "rocky" | "quetzu" | "tour" | "vener" | "taurus" | "msg" | "magnet" | "plume" | "kaura" | "demon" | "pmi" | "pda" | "dicarb" | "tid1" | "belius" | "caush" | "fmedal" | "labowi" | "moves" | "deaths" | "pdays" | "lvlup" | "killm" | "killd" | "healpv" | "upwood" | "upfire" | "upthun" | "upair" | "upwatr" | "brkpel" | "chasse" | "cueill" | "peche" | "energy" | "fouill" | "market" | "sbuyer" | "clans" | "beauty" | "gdcatt" | "gdcdef" | "bgum" | "medgol" | "medsil" | "medbro" | "medpla" | "lvlup1" | "lvlup2", points: number) => Unlock[]; }; declare const fever: { goals: Record<"fbetaa" | "fheart" | "fchest" | "fmonst" | "fcoc" | "fbook" | "fshoes" | "fmir" | "fclov" | "fdoll" | "fmask" | "fwand" | "fgoog" | "fradar" | "fprism" | "ffx" | "fumb" | "fdice" | "fwind" | "fice" | "fhour" | "fchro" | "fring" | "ffork" | "ffil" | "fruna" | "frunb" | "frunc" | "frund" | "frune" | "frunf" | "frung" | "fcart" | "frbow" | "fworld" | "fbag" | "fvolt" | "ffire" | "frasen" | "fcam" | "ffeuil" | "fcut" | "fisl" | "fcube", Goal>; get: (id: "fbetaa" | "fheart" | "fchest" | "fmonst" | "fcoc" | "fbook" | "fshoes" | "fmir" | "fclov" | "fdoll" | "fmask" | "fwand" | "fgoog" | "fradar" | "fprism" | "ffx" | "fumb" | "fdice" | "fwind" | "fice" | "fhour" | "fchro" | "fring" | "ffork" | "ffil" | "fruna" | "frunb" | "frunc" | "frund" | "frune" | "frunf" | "frung" | "fcart" | "frbow" | "fworld" | "fbag" | "fvolt" | "ffire" | "frasen" | "fcam" | "ffeuil" | "fcut" | "fisl" | "fcube") => Goal; getUnlocked: (id: "fbetaa" | "fheart" | "fchest" | "fmonst" | "fcoc" | "fbook" | "fshoes" | "fmir" | "fclov" | "fdoll" | "fmask" | "fwand" | "fgoog" | "fradar" | "fprism" | "ffx" | "fumb" | "fdice" | "fwind" | "fice" | "fhour" | "fchro" | "fring" | "ffork" | "ffil" | "fruna" | "frunb" | "frunc" | "frund" | "frune" | "frunf" | "frung" | "fcart" | "frbow" | "fworld" | "fbag" | "fvolt" | "ffire" | "frasen" | "fcam" | "ffeuil" | "fcut" | "fisl" | "fcube", points: number) => Unlock[]; }; declare const hordes: { goals: Record<"bgum" | "killz" | "dhang" | "dwater" | "dinfec" | "doutsd" | "dcity" | "ddrug" | "dnucl" | "wound" | "healed" | "cannib" | "broken" | "theft" | "plundr" | "homeup" | "heroac" | "explor" | "explo2" | "jrangr" | "jguard" | "jcolle" | "jermit" | "jtamer" | "jtech" | "jsham" | "chstxl" | "tronco" | "watgun" | "batgun" | "repair" | "cobaye" | "ebuild" | "ebcrow" | "ebgros" | "ebpmv" | "ebcstl" | "drug" | "alcool" | "forum" | "maso" | "animal" | "deco" | "digger" | "buildr" | "wondrs" | "wondr2" | "beta" | "cgarb" | "cwater" | "wrestl" | "ban" | "surlst" | "suhard" | "surgrp" | "cooked" | "refine" | "rp" | "hbuild" | "drgmkr" | "cookr" | "fjv" | "fjvani" | "armag" | "ginfec" | "solban" | "share" | "nodrug" | "santac" | "lepre" | "camp" | "cmplst" | "kohlmb" | "rrefer" | "fjv2" | "winthi" | "winbas" | "wintop" | "sandb" | "brep" | "paques" | "door" | "ruine" | "guide" | "collec" | "mystic" | "ptame" | "guard" | "cdh" | "cdhwin" | "ermwin" | "shawin" | "tecwin" | "defwin" | "rngwin" | "tamwin" | "derwin" | "comu" | "ufc" | "ufcwin" | "cott" | "comu2" | "goodg" | "pande", Goal>; get: (id: "bgum" | "killz" | "dhang" | "dwater" | "dinfec" | "doutsd" | "dcity" | "ddrug" | "dnucl" | "wound" | "healed" | "cannib" | "broken" | "theft" | "plundr" | "homeup" | "heroac" | "explor" | "explo2" | "jrangr" | "jguard" | "jcolle" | "jermit" | "jtamer" | "jtech" | "jsham" | "chstxl" | "tronco" | "watgun" | "batgun" | "repair" | "cobaye" | "ebuild" | "ebcrow" | "ebgros" | "ebpmv" | "ebcstl" | "drug" | "alcool" | "forum" | "maso" | "animal" | "deco" | "digger" | "buildr" | "wondrs" | "wondr2" | "beta" | "cgarb" | "cwater" | "wrestl" | "ban" | "surlst" | "suhard" | "surgrp" | "cooked" | "refine" | "rp" | "hbuild" | "drgmkr" | "cookr" | "fjv" | "fjvani" | "armag" | "ginfec" | "solban" | "share" | "nodrug" | "santac" | "lepre" | "camp" | "cmplst" | "kohlmb" | "rrefer" | "fjv2" | "winthi" | "winbas" | "wintop" | "sandb" | "brep" | "paques" | "door" | "ruine" | "guide" | "collec" | "mystic" | "ptame" | "guard" | "cdh" | "cdhwin" | "ermwin" | "shawin" | "tecwin" | "defwin" | "rngwin" | "tamwin" | "derwin" | "comu" | "ufc" | "ufcwin" | "cott" | "comu2" | "goodg" | "pande") => Goal; getUnlocked: (id: "bgum" | "killz" | "dhang" | "dwater" | "dinfec" | "doutsd" | "dcity" | "ddrug" | "dnucl" | "wound" | "healed" | "cannib" | "broken" | "theft" | "plundr" | "homeup" | "heroac" | "explor" | "explo2" | "jrangr" | "jguard" | "jcolle" | "jermit" | "jtamer" | "jtech" | "jsham" | "chstxl" | "tronco" | "watgun" | "batgun" | "repair" | "cobaye" | "ebuild" | "ebcrow" | "ebgros" | "ebpmv" | "ebcstl" | "drug" | "alcool" | "forum" | "maso" | "animal" | "deco" | "digger" | "buildr" | "wondrs" | "wondr2" | "beta" | "cgarb" | "cwater" | "wrestl" | "ban" | "surlst" | "suhard" | "surgrp" | "cooked" | "refine" | "rp" | "hbuild" | "drgmkr" | "cookr" | "fjv" | "fjvani" | "armag" | "ginfec" | "solban" | "share" | "nodrug" | "santac" | "lepre" | "camp" | "cmplst" | "kohlmb" | "rrefer" | "fjv2" | "winthi" | "winbas" | "wintop" | "sandb" | "brep" | "paques" | "door" | "ruine" | "guide" | "collec" | "mystic" | "ptame" | "guard" | "cdh" | "cdhwin" | "ermwin" | "shawin" | "tecwin" | "defwin" | "rngwin" | "tamwin" | "derwin" | "comu" | "ufc" | "ufcwin" | "cott" | "comu2" | "goodg" | "pande", points: number) => Unlock[]; }; declare const intrusion: { goals: Record<"mextra" | "eextra" | "av" | "corrup" | "crash" | "win" | "lwin" | "pwin" | "passwd" | "log" | "sale" | "rsale" | "ccard" | "hl" | "lead3" | "lead2" | "lead1" | "rank3" | "rank2" | "rank1", Goal>; get: (id: "mextra" | "eextra" | "av" | "corrup" | "crash" | "win" | "lwin" | "pwin" | "passwd" | "log" | "sale" | "rsale" | "ccard" | "hl" | "lead3" | "lead2" | "lead1" | "rank3" | "rank2" | "rank1") => Goal; getUnlocked: (id: "mextra" | "eextra" | "av" | "corrup" | "crash" | "win" | "lwin" | "pwin" | "passwd" | "log" | "sale" | "rsale" | "ccard" | "hl" | "lead3" | "lead2" | "lead1" | "rank3" | "rank2" | "rank1", points: number) => Unlock[]; }; declare const kadokado: { goals: Record<"unlockedGames" | "wonGift" | "missionSteps" | "joinedClan" | "createdClan" | "wing" | "clanDefense" | "clanAttack" | "game1" | "game2" | "game3" | "game4" | "game5" | "game6" | "game7" | "game8" | "game9" | "game10" | "game11" | "game12" | "game13" | "game14" | "game15" | "game16" | "game17" | "game18" | "game19" | "game20" | "game21" | "game22" | "game23" | "game24" | "game25" | "game26" | "game27" | "game28" | "game29" | "game30" | "game31" | "game32" | "game33" | "game34" | "game35" | "game36" | "game37" | "game38" | "game39" | "game40" | "game41" | "game42" | "game43" | "game44" | "game45" | "game46" | "game47" | "game48" | "game49" | "game53" | "game55" | "game56" | "game57" | "game58" | "game59" | "game60" | "game61" | "game62" | "game63" | "game64" | "game65" | "game66" | "game67" | "game68" | "game69" | "game70" | "game71" | "game72" | "game73" | "game74" | "game75" | "game76" | "game77", Goal>; get: (id: "unlockedGames" | "wonGift" | "missionSteps" | "joinedClan" | "createdClan" | "wing" | "clanDefense" | "clanAttack" | "game1" | "game2" | "game3" | "game4" | "game5" | "game6" | "game7" | "game8" | "game9" | "game10" | "game11" | "game12" | "game13" | "game14" | "game15" | "game16" | "game17" | "game18" | "game19" | "game20" | "game21" | "game22" | "game23" | "game24" | "game25" | "game26" | "game27" | "game28" | "game29" | "game30" | "game31" | "game32" | "game33" | "game34" | "game35" | "game36" | "game37" | "game38" | "game39" | "game40" | "game41" | "game42" | "game43" | "game44" | "game45" | "game46" | "game47" | "game48" | "game49" | "game53" | "game55" | "game56" | "game57" | "game58" | "game59" | "game60" | "game61" | "game62" | "game63" | "game64" | "game65" | "game66" | "game67" | "game68" | "game69" | "game70" | "game71" | "game72" | "game73" | "game74" | "game75" | "game76" | "game77") => Goal; getUnlocked: (id: "unlockedGames" | "wonGift" | "missionSteps" | "joinedClan" | "createdClan" | "wing" | "clanDefense" | "clanAttack" | "game1" | "game2" | "game3" | "game4" | "game5" | "game6" | "game7" | "game8" | "game9" | "game10" | "game11" | "game12" | "game13" | "game14" | "game15" | "game16" | "game17" | "game18" | "game19" | "game20" | "game21" | "game22" | "game23" | "game24" | "game25" | "game26" | "game27" | "game28" | "game29" | "game30" | "game31" | "game32" | "game33" | "game34" | "game35" | "game36" | "game37" | "game38" | "game39" | "game40" | "game41" | "game42" | "game43" | "game44" | "game45" | "game46" | "game47" | "game48" | "game49" | "game53" | "game55" | "game56" | "game57" | "game58" | "game59" | "game60" | "game61" | "game62" | "game63" | "game64" | "game65" | "game66" | "game67" | "game68" | "game69" | "game70" | "game71" | "game72" | "game73" | "game74" | "game75" | "game76" | "game77", points: number) => Unlock[]; }; declare const kingdom: { goals: Record<"empero" | "king" | "food" | "gold" | "wood" | "metal" | "lin" | "horse", Goal>; get: (id: "empero" | "king" | "food" | "gold" | "wood" | "metal" | "lin" | "horse") => Goal; getUnlocked: (id: "empero" | "king" | "food" | "gold" | "wood" | "metal" | "lin" | "horse", points: number) => Unlock[]; }; declare const kube: { goals: Record<"lava" | "water" | "swim" | "dtc" | "photo" | "days" | "telep" | "zones" | "chest" | "build" | "kubes" | "action", Goal>; get: (id: "lava" | "water" | "swim" | "dtc" | "photo" | "days" | "telep" | "zones" | "chest" | "build" | "kubes" | "action") => Goal; getUnlocked: (id: "lava" | "water" | "swim" | "dtc" | "photo" | "days" | "telep" | "zones" | "chest" | "build" | "kubes" | "action", points: number) => Unlock[]; }; declare const labrute: { goals: Record<"perfec" | "dodge" | "parade" | "disarm" | "ripost" | "countr" | "folfra" | "barbar" | "brute" | "tornad" | "dca" | "legend" | "pro", Goal>; get: (id: "perfec" | "dodge" | "parade" | "disarm" | "ripost" | "countr" | "folfra" | "barbar" | "brute" | "tornad" | "dca" | "legend" | "pro") => Goal; getUnlocked: (id: "perfec" | "dodge" | "parade" | "disarm" | "ripost" | "countr" | "folfra" | "barbar" | "brute" | "tornad" | "dca" | "legend" | "pro", points: number) => Unlock[]; }; declare const majority: { goals: Record<"plays" | "wins" | "pchelm" | "chelem" | "good" | "bad" | "unani1" | "unani2" | "unani3" | "eq" | "mdr1" | "mdr2" | "mdr3" | "ten" | "twenty" | "alone", Goal>; get: (id: "plays" | "wins" | "pchelm" | "chelem" | "good" | "bad" | "unani1" | "unani2" | "unani3" | "eq" | "mdr1" | "mdr2" | "mdr3" | "ten" | "twenty" | "alone") => Goal; getUnlocked: (id: "plays" | "wins" | "pchelm" | "chelem" | "good" | "bad" | "unani1" | "unani2" | "unani3" | "eq" | "mdr1" | "mdr2" | "mdr3" | "ten" | "twenty" | "alone", points: number) => Unlock[]; }; declare const motionball2: { goals: Record<"bfacet" | "bnorma" | "btime" | "bdeath" | "bmagne" | "bshado" | "oeil" | "masque" | "ecaz" | "eca1" | "eca2" | "eca3" | "symbz" | "symb1" | "symb2" | "symb3" | "c1" | "c1arge" | "c1or" | "c2" | "c2arge" | "c2or" | "c3" | "c3arge" | "c3or" | "c4" | "c4arge" | "c4or" | "c5" | "c5arge" | "c5or" | "ca" | "caarge" | "caor" | "cb" | "cbarge" | "cbor", Goal>; get: (id: "bfacet" | "bnorma" | "btime" | "bdeath" | "bmagne" | "bshado" | "oeil" | "masque" | "ecaz" | "eca1" | "eca2" | "eca3" | "symbz" | "symb1" | "symb2" | "symb3" | "c1" | "c1arge" | "c1or" | "c2" | "c2arge" | "c2or" | "c3" | "c3arge" | "c3or" | "c4" | "c4arge" | "c4or" | "c5" | "c5arge" | "c5or" | "ca" | "caarge" | "caor" | "cb" | "cbarge" | "cbor") => Goal; getUnlocked: (id: "bfacet" | "bnorma" | "btime" | "bdeath" | "bmagne" | "bshado" | "oeil" | "masque" | "ecaz" | "eca1" | "eca2" | "eca3" | "symbz" | "symb1" | "symb2" | "symb3" | "c1" | "c1arge" | "c1or" | "c2" | "c2arge" | "c2or" | "c3" | "c3arge" | "c3or" | "c4" | "c4arge" | "c4or" | "c5" | "c5arge" | "c5or" | "ca" | "caarge" | "caor" | "cb" | "cbarge" | "cbor", points: number) => Unlock[]; }; declare const mush: { goals: Record<"beta" | "signal_fire" | "win_nova" | "win_triumph" | "other_nova" | "other_triumph" | "extinguish_fire" | "signal_equip" | "gagged" | "game_without_sleep" | "explorer" | "triumph" | "door_repaired" | "planet_scanned" | "mushed" | "has_mushed" | "sleeper" | "tutorial" | "explo_feed" | "new_plants" | "give_mission" | "daily_order" | "hunter_down" | "day_5_reached" | "day_10_reached" | "day_15_reached" | "day_20_reached" | "day_30_reached" | "ration_cooked" | "plasma_shield" | "surgeon" | "butcher" | "shrinker" | "physicist" | "politician" | "artefact_coll" | "artefact_specialist" | "tags_complete" | "research_team" | "project_team" | "team_all_rebels" | "team_rebels" | "rebels" | "kivanc_contacted" | "nils_contacted" | "mage_books_learned" | "back_to_root" | "pilgred_back_online" | "drugs_taken" | "coffee_taken" | "cooked_taken" | "ration_taken" | "frozen_taken" | "grenadier" | "natamist" | "mush_killed" | "team_mush_killed" | "camera_installed" | "cat_cuddled" | "disease_contracted" | "venerian_disease" | "mankarog_down" | "succeeded_inspection" | "kind_person" | "coffee_man" | "commander_should_go_last" | "last_member" | "communicator" | "mush_genome" | "research_digged" | "project_digged" | "day_max" | "quasar_first" | "quasar_second" | "quasar_third" | "quasar_fourth" | "quasar_special" | "quasar_figurant" | "mush_tease_EW" | "mush_tease_FK" | "mush_tease_FB" | "mush_tease_GR" | "mush_tease_IS" | "mush_tease_JK" | "mush_tease_JH" | "mush_tease_KJS" | "mush_tease_LKT" | "mush_tease_PR" | "mush_tease_RT" | "mush_tease_RZ" | "mush_tease_SS" | "mush_tease_TA" | "mush_tease_WC" | "mush_tease_ZC" | "mush_tease_SCH" | "jin_su" | "frieda" | "kuan_ti" | "janice" | "roland" | "hua" | "paola" | "chao" | "finola" | "stephen" | "ian" | "chun" | "raluca" | "gioele" | "eleesha" | "terrence" | "derek" | "andie" | "mushxp" | "avt_prems" | "neron_flu" | "eden" | "eden_contaminated" | "likemush" | "no_mush" | "three_mush" | "fungal_battle" | "fast_cycle" | "blitz_cycle" | "slow_cycle" | "no_mush_bar" | "mush_progressive" | "chun_battle" | "ep1" | "ep2" | "ep3" | "ep4" | "ep5" | "ep6" | "ticket" | "altruisme", Goal>; get: (id: "beta" | "signal_fire" | "win_nova" | "win_triumph" | "other_nova" | "other_triumph" | "extinguish_fire" | "signal_equip" | "gagged" | "game_without_sleep" | "explorer" | "triumph" | "door_repaired" | "planet_scanned" | "mushed" | "has_mushed" | "sleeper" | "tutorial" | "explo_feed" | "new_plants" | "give_mission" | "daily_order" | "hunter_down" | "day_5_reached" | "day_10_reached" | "day_15_reached" | "day_20_reached" | "day_30_reached" | "ration_cooked" | "plasma_shield" | "surgeon" | "butcher" | "shrinker" | "physicist" | "politician" | "artefact_coll" | "artefact_specialist" | "tags_complete" | "research_team" | "project_team" | "team_all_rebels" | "team_rebels" | "rebels" | "kivanc_contacted" | "nils_contacted" | "mage_books_learned" | "back_to_root" | "pilgred_back_online" | "drugs_taken" | "coffee_taken" | "cooked_taken" | "ration_taken" | "frozen_taken" | "grenadier" | "natamist" | "mush_killed" | "team_mush_killed" | "camera_installed" | "cat_cuddled" | "disease_contracted" | "venerian_disease" | "mankarog_down" | "succeeded_inspection" | "kind_person" | "coffee_man" | "commander_should_go_last" | "last_member" | "communicator" | "mush_genome" | "research_digged" | "project_digged" | "day_max" | "quasar_first" | "quasar_second" | "quasar_third" | "quasar_fourth" | "quasar_special" | "quasar_figurant" | "mush_tease_EW" | "mush_tease_FK" | "mush_tease_FB" | "mush_tease_GR" | "mush_tease_IS" | "mush_tease_JK" | "mush_tease_JH" | "mush_tease_KJS" | "mush_tease_LKT" | "mush_tease_PR" | "mush_tease_RT" | "mush_tease_RZ" | "mush_tease_SS" | "mush_tease_TA" | "mush_tease_WC" | "mush_tease_ZC" | "mush_tease_SCH" | "jin_su" | "frieda" | "kuan_ti" | "janice" | "roland" | "hua" | "paola" | "chao" | "finola" | "stephen" | "ian" | "chun" | "raluca" | "gioele" | "eleesha" | "terrence" | "derek" | "andie" | "mushxp" | "avt_prems" | "neron_flu" | "eden" | "eden_contaminated" | "likemush" | "no_mush" | "three_mush" | "fungal_battle" | "fast_cycle" | "blitz_cycle" | "slow_cycle" | "no_mush_bar" | "mush_progressive" | "chun_battle" | "ep1" | "ep2" | "ep3" | "ep4" | "ep5" | "ep6" | "ticket" | "altruisme") => Goal; getUnlocked: (id: "beta" | "signal_fire" | "win_nova" | "win_triumph" | "other_nova" | "other_triumph" | "extinguish_fire" | "signal_equip" | "gagged" | "game_without_sleep" | "explorer" | "triumph" | "door_repaired" | "planet_scanned" | "mushed" | "has_mushed" | "sleeper" | "tutorial" | "explo_feed" | "new_plants" | "give_mission" | "daily_order" | "hunter_down" | "day_5_reached" | "day_10_reached" | "day_15_reached" | "day_20_reached" | "day_30_reached" | "ration_cooked" | "plasma_shield" | "surgeon" | "butcher" | "shrinker" | "physicist" | "politician" | "artefact_coll" | "artefact_specialist" | "tags_complete" | "research_team" | "project_team" | "team_all_rebels" | "team_rebels" | "rebels" | "kivanc_contacted" | "nils_contacted" | "mage_books_learned" | "back_to_root" | "pilgred_back_online" | "drugs_taken" | "coffee_taken" | "cooked_taken" | "ration_taken" | "frozen_taken" | "grenadier" | "natamist" | "mush_killed" | "team_mush_killed" | "camera_installed" | "cat_cuddled" | "disease_contracted" | "venerian_disease" | "mankarog_down" | "succeeded_inspection" | "kind_person" | "coffee_man" | "commander_should_go_last" | "last_member" | "communicator" | "mush_genome" | "research_digged" | "project_digged" | "day_max" | "quasar_first" | "quasar_second" | "quasar_third" | "quasar_fourth" | "quasar_special" | "quasar_figurant" | "mush_tease_EW" | "mush_tease_FK" | "mush_tease_FB" | "mush_tease_GR" | "mush_tease_IS" | "mush_tease_JK" | "mush_tease_JH" | "mush_tease_KJS" | "mush_tease_LKT" | "mush_tease_PR" | "mush_tease_RT" | "mush_tease_RZ" | "mush_tease_SS" | "mush_tease_TA" | "mush_tease_WC" | "mush_tease_ZC" | "mush_tease_SCH" | "jin_su" | "frieda" | "kuan_ti" | "janice" | "roland" | "hua" | "paola" | "chao" | "finola" | "stephen" | "ian" | "chun" | "raluca" | "gioele" | "eleesha" | "terrence" | "derek" | "andie" | "mushxp" | "avt_prems" | "neron_flu" | "eden" | "eden_contaminated" | "likemush" | "no_mush" | "three_mush" | "fungal_battle" | "fast_cycle" | "blitz_cycle" | "slow_cycle" | "no_mush_bar" | "mush_progressive" | "chun_battle" | "ep1" | "ep2" | "ep3" | "ep4" | "ep5" | "ep6" | "ticket" | "altruisme", points: number) => Unlock[]; }; declare const naturalchimie2: { goals: Record<"msg" | "fjv" | "ccl" | "cmm" | "cnaz" | "cok" | "chro" | "poum" | "pevil" | "plove" | "pchamp" | "pygold" | "carg" | "ccute" | "cninja" | "csmile" | "cwhat" | "sdoc" | "happy" | "snonono" | "ssad" | "ssmile" | "guSmall" | "apSmall" | "jzSmall" | "gmSmall" | "skSmall" | "gu" | "ap" | "jz" | "gm" | "sk" | "xmcool" | "xmhu" | "xmyeah" | "pkm" | "pko" | "pky" | "cstp" | "quest" | "xp" | "repgu" | "repap" | "repjz" | "repgm" | "repsk" | "rdone" | "rfail" | "rconf" | "rforb" | "cten" | "cbest" | "schang" | "zone" | "chaine" | "opa" | "kubor" | "ksell" | "obj" | "rhave" | "rcos" | "relem" | "rvest" | "rcomb" | "rstup" | "skat" | "block" | "eor" | "eabys" | "emag" | "eprim" | "evort" | "echro" | "adyn" | "agren" | "apick" | "adolly" | "araz" | "awomb" | "tbeta" | "gfcas" | "hair" | "pumpk" | "xmph" | "xmbn" | "xmch" | "xmsm" | "rssch" | "rsjz" | "rsap" | "rssk" | "rsgm" | "rnbing" | "rnbobj" | "rbestc" | "rdonk" | "rdonr" | "rtp" | "agrte" | "apelu" | "aslid" | "wmiss" | "wdig" | "wice" | "wwind" | "wdflt" | "amanif", Goal>; get: (id: "msg" | "fjv" | "ccl" | "cmm" | "cnaz" | "cok" | "chro" | "poum" | "pevil" | "plove" | "pchamp" | "pygold" | "carg" | "ccute" | "cninja" | "csmile" | "cwhat" | "sdoc" | "happy" | "snonono" | "ssad" | "ssmile" | "guSmall" | "apSmall" | "jzSmall" | "gmSmall" | "skSmall" | "gu" | "ap" | "jz" | "gm" | "sk" | "xmcool" | "xmhu" | "xmyeah" | "pkm" | "pko" | "pky" | "cstp" | "quest" | "xp" | "repgu" | "repap" | "repjz" | "repgm" | "repsk" | "rdone" | "rfail" | "rconf" | "rforb" | "cten" | "cbest" | "schang" | "zone" | "chaine" | "opa" | "kubor" | "ksell" | "obj" | "rhave" | "rcos" | "relem" | "rvest" | "rcomb" | "rstup" | "skat" | "block" | "eor" | "eabys" | "emag" | "eprim" | "evort" | "echro" | "adyn" | "agren" | "apick" | "adolly" | "araz" | "awomb" | "tbeta" | "gfcas" | "hair" | "pumpk" | "xmph" | "xmbn" | "xmch" | "xmsm" | "rssch" | "rsjz" | "rsap" | "rssk" | "rsgm" | "rnbing" | "rnbobj" | "rbestc" | "rdonk" | "rdonr" | "rtp" | "agrte" | "apelu" | "aslid" | "wmiss" | "wdig" | "wice" | "wwind" | "wdflt" | "amanif") => Goal; getUnlocked: (id: "msg" | "fjv" | "ccl" | "cmm" | "cnaz" | "cok" | "chro" | "poum" | "pevil" | "plove" | "pchamp" | "pygold" | "carg" | "ccute" | "cninja" | "csmile" | "cwhat" | "sdoc" | "happy" | "snonono" | "ssad" | "ssmile" | "guSmall" | "apSmall" | "jzSmall" | "gmSmall" | "skSmall" | "gu" | "ap" | "jz" | "gm" | "sk" | "xmcool" | "xmhu" | "xmyeah" | "pkm" | "pko" | "pky" | "cstp" | "quest" | "xp" | "repgu" | "repap" | "repjz" | "repgm" | "repsk" | "rdone" | "rfail" | "rconf" | "rforb" | "cten" | "cbest" | "schang" | "zone" | "chaine" | "opa" | "kubor" | "ksell" | "obj" | "rhave" | "rcos" | "relem" | "rvest" | "rcomb" | "rstup" | "skat" | "block" | "eor" | "eabys" | "emag" | "eprim" | "evort" | "echro" | "adyn" | "agren" | "apick" | "adolly" | "araz" | "awomb" | "tbeta" | "gfcas" | "hair" | "pumpk" | "xmph" | "xmbn" | "xmch" | "xmsm" | "rssch" | "rsjz" | "rsap" | "rssk" | "rsgm" | "rnbing" | "rnbobj" | "rbestc" | "rdonk" | "rdonr" | "rtp" | "agrte" | "apelu" | "aslid" | "wmiss" | "wdig" | "wice" | "wwind" | "wdflt" | "amanif", points: number) => Unlock[]; }; declare const odyssey: { goals: Record<"compas" | "triton" | "ring" | "axe" | "axefor" | "lotos" | "moly" | "kmedal" | "blaze" | "crosto" | "savmap" | "mirror" | "hypmap" | "galupi" | "nstar" | "rose" | "ribon" | "drod" | "zlance" | "zpenda" | "pempty" | "mcard" | "scard" | "cane1" | "cane2" | "cane3" | "fish1" | "fish2" | "fish3" | "alette" | "food1" | "food2" | "food3" | "monste" | "beche" | "amadou" | "coton" | "sail" | "oldham" | "hammer" | "flower" | "crane" | "scar" | "bsexta" | "sextan" | "helm" | "epi" | "carot" | "cabbag" | "poem" | "headac" | "stones" | "cocon" | "fil" | "coral" | "rlette" | "stamp" | "oshiel" | "helmet" | "shield" | "sword" | "armor" | "mecha" | "hmap" | "paxos" | "pmap" | "memory" | "cloche" | "seal" | "scisso" | "plate" | "starfi" | "bmecha" | "nectar" | "harmo" | "heratu" | "celeid" | "gloria" | "dolski" | "tiber" | "epivon" | "horas" | "stiren" | "torkis" | "antone" | "egoine" | "maugri" | "espiro" | "tasuly" | "keperi" | "tatsi" | "balla" | "ballb" | "ballc" | "balld" | "balle" | "ballg" | "ballh" | "balli" | "ballj" | "ballk" | "balll" | "ballm" | "balln" | "ballo" | "ballp" | "ballq" | "ballv" | "ballw" | "ballx" | "bally" | "ballz" | "ballaa" | "ballab" | "ballac" | "ballad" | "ballae" | "ballag" | "ballah" | "ballai" | "ballaj" | "ballak" | "ballal" | "ballam" | "ballan" | "ballao" | "ballaq" | "ballar" | "ballas" | "ballat" | "ballau" | "ballav" | "ballax" | "ballaz" | "ballba" | "ballbb" | "ballbc" | "ballbd" | "ballbe" | "ballbf" | "ballbk" | "ballbl" | "bfroze", Goal>; get: (id: "compas" | "triton" | "ring" | "axe" | "axefor" | "lotos" | "moly" | "kmedal" | "blaze" | "crosto" | "savmap" | "mirror" | "hypmap" | "galupi" | "nstar" | "rose" | "ribon" | "drod" | "zlance" | "zpenda" | "pempty" | "mcard" | "scard" | "cane1" | "cane2" | "cane3" | "fish1" | "fish2" | "fish3" | "alette" | "food1" | "food2" | "food3" | "monste" | "beche" | "amadou" | "coton" | "sail" | "oldham" | "hammer" | "flower" | "crane" | "scar" | "bsexta" | "sextan" | "helm" | "epi" | "carot" | "cabbag" | "poem" | "headac" | "stones" | "cocon" | "fil" | "coral" | "rlette" | "stamp" | "oshiel" | "helmet" | "shield" | "sword" | "armor" | "mecha" | "hmap" | "paxos" | "pmap" | "memory" | "cloche" | "seal" | "scisso" | "plate" | "starfi" | "bmecha" | "nectar" | "harmo" | "heratu" | "celeid" | "gloria" | "dolski" | "tiber" | "epivon" | "horas" | "stiren" | "torkis" | "antone" | "egoine" | "maugri" | "espiro" | "tasuly" | "keperi" | "tatsi" | "balla" | "ballb" | "ballc" | "balld" | "balle" | "ballg" | "ballh" | "balli" | "ballj" | "ballk" | "balll" | "ballm" | "balln" | "ballo" | "ballp" | "ballq" | "ballv" | "ballw" | "ballx" | "bally" | "ballz" | "ballaa" | "ballab" | "ballac" | "ballad" | "ballae" | "ballag" | "ballah" | "ballai" | "ballaj" | "ballak" | "ballal" | "ballam" | "ballan" | "ballao" | "ballaq" | "ballar" | "ballas" | "ballat" | "ballau" | "ballav" | "ballax" | "ballaz" | "ballba" | "ballbb" | "ballbc" | "ballbd" | "ballbe" | "ballbf" | "ballbk" | "ballbl" | "bfroze") => Goal; getUnlocked: (id: "compas" | "triton" | "ring" | "axe" | "axefor" | "lotos" | "moly" | "kmedal" | "blaze" | "crosto" | "savmap" | "mirror" | "hypmap" | "galupi" | "nstar" | "rose" | "ribon" | "drod" | "zlance" | "zpenda" | "pempty" | "mcard" | "scard" | "cane1" | "cane2" | "cane3" | "fish1" | "fish2" | "fish3" | "alette" | "food1" | "food2" | "food3" | "monste" | "beche" | "amadou" | "coton" | "sail" | "oldham" | "hammer" | "flower" | "crane" | "scar" | "bsexta" | "sextan" | "helm" | "epi" | "carot" | "cabbag" | "poem" | "headac" | "stones" | "cocon" | "fil" | "coral" | "rlette" | "stamp" | "oshiel" | "helmet" | "shield" | "sword" | "armor" | "mecha" | "hmap" | "paxos" | "pmap" | "memory" | "cloche" | "seal" | "scisso" | "plate" | "starfi" | "bmecha" | "nectar" | "harmo" | "heratu" | "celeid" | "gloria" | "dolski" | "tiber" | "epivon" | "horas" | "stiren" | "torkis" | "antone" | "egoine" | "maugri" | "espiro" | "tasuly" | "keperi" | "tatsi" | "balla" | "ballb" | "ballc" | "balld" | "balle" | "ballg" | "ballh" | "balli" | "ballj" | "ballk" | "balll" | "ballm" | "balln" | "ballo" | "ballp" | "ballq" | "ballv" | "ballw" | "ballx" | "bally" | "ballz" | "ballaa" | "ballab" | "ballac" | "ballad" | "ballae" | "ballag" | "ballah" | "ballai" | "ballaj" | "ballak" | "ballal" | "ballam" | "ballan" | "ballao" | "ballaq" | "ballar" | "ballas" | "ballat" | "ballau" | "ballav" | "ballax" | "ballaz" | "ballba" | "ballbb" | "ballbc" | "ballbd" | "ballbe" | "ballbf" | "ballbk" | "ballbl" | "bfroze", points: number) => Unlock[]; }; declare const snake: { goals: Record<"collec" | "av" | "hl" | "eq" | "ca" | "cb" | "gu" | "ap" | "jz" | "gm" | "questa" | "questb" | "questc" | "questd" | "queste" | "questf" | "lot" | "wdraft" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "aa" | "ab" | "ac" | "ad" | "ae" | "af" | "ag" | "ah" | "ai" | "aj" | "ak" | "al" | "am" | "an" | "ao" | "aq" | "ar" | "as" | "at" | "au" | "aw" | "ax" | "ay" | "az" | "ba" | "bb" | "bc" | "bd" | "be" | "bf" | "bg" | "bh" | "bi" | "bj" | "bk" | "bl" | "bm" | "bn" | "bo" | "bp" | "bq" | "br" | "bs" | "bt" | "bu" | "bv" | "bw" | "bx" | "by" | "bz" | "cc" | "cd" | "ce" | "cf" | "cg" | "ch" | "ci" | "cj" | "ck" | "cl" | "cm" | "cn" | "co" | "cp" | "cq" | "cr" | "cs" | "ct" | "cu" | "cv" | "cw" | "cx" | "cy" | "cz" | "da" | "db" | "dc" | "dd" | "de" | "df" | "dg" | "dh" | "di" | "dj" | "dk" | "dl" | "dm" | "dn" | "do" | "dp" | "dq" | "dr" | "ds" | "dt" | "du" | "dv" | "dw" | "dx" | "dy" | "dz" | "ea" | "eb" | "ec" | "ed" | "ee" | "ef" | "eg" | "eh" | "ei" | "ej" | "ek" | "el" | "em" | "en" | "eo" | "ep" | "er" | "es" | "et" | "eu" | "ev" | "ew" | "ex" | "ey" | "ez" | "fa" | "fb" | "fc" | "fd" | "fe" | "ff" | "fg" | "fh" | "fi" | "fj" | "fk" | "fl" | "fm" | "fn" | "fo" | "fp" | "fq" | "fr" | "fs" | "ft" | "fu" | "fv" | "fw" | "fx" | "fy" | "fz" | "ga" | "gb" | "gc" | "gd" | "ge" | "gf" | "gg" | "gh" | "gi" | "gj" | "gk" | "gl" | "gn" | "go" | "gp" | "gq" | "gr" | "gs" | "gt" | "gv" | "gw" | "gx" | "gy" | "gz" | "ha" | "hb" | "hc" | "hd" | "he" | "hf" | "hg" | "hh" | "hi" | "hj" | "hk" | "hm" | "hn" | "ho" | "hp" | "hq" | "hr" | "hs" | "ht" | "hu" | "hv" | "hw" | "hx" | "hy" | "hz" | "ia" | "ib" | "ic" | "id" | "ie" | "if" | "ig" | "ih" | "ii" | "ij" | "ik" | "il" | "im" | "in" | "io" | "ip" | "iq" | "ir" | "is" | "it" | "iu" | "iv" | "iw" | "ix" | "iy" | "iz" | "ja" | "jb" | "jc" | "jd" | "je" | "jf" | "jg" | "jh" | "ji" | "jj" | "jk" | "jl" | "jm" | "jn" | "jo" | "jp" | "jq" | "jr" | "js" | "jt" | "ju" | "jv" | "jw" | "jx" | "jy" | "ka" | "kb" | "kc" | "kd" | "ke" | "kf" | "kg" | "kh" | "ki" | "kj" | "kk" | "kl" | "km" | "kn" | "ko", Goal>; get: (id: "collec" | "av" | "hl" | "eq" | "ca" | "cb" | "gu" | "ap" | "jz" | "gm" | "questa" | "questb" | "questc" | "questd" | "queste" | "questf" | "lot" | "wdraft" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "aa" | "ab" | "ac" | "ad" | "ae" | "af" | "ag" | "ah" | "ai" | "aj" | "ak" | "al" | "am" | "an" | "ao" | "aq" | "ar" | "as" | "at" | "au" | "aw" | "ax" | "ay" | "az" | "ba" | "bb" | "bc" | "bd" | "be" | "bf" | "bg" | "bh" | "bi" | "bj" | "bk" | "bl" | "bm" | "bn" | "bo" | "bp" | "bq" | "br" | "bs" | "bt" | "bu" | "bv" | "bw" | "bx" | "by" | "bz" | "cc" | "cd" | "ce" | "cf" | "cg" | "ch" | "ci" | "cj" | "ck" | "cl" | "cm" | "cn" | "co" | "cp" | "cq" | "cr" | "cs" | "ct" | "cu" | "cv" | "cw" | "cx" | "cy" | "cz" | "da" | "db" | "dc" | "dd" | "de" | "df" | "dg" | "dh" | "di" | "dj" | "dk" | "dl" | "dm" | "dn" | "do" | "dp" | "dq" | "dr" | "ds" | "dt" | "du" | "dv" | "dw" | "dx" | "dy" | "dz" | "ea" | "eb" | "ec" | "ed" | "ee" | "ef" | "eg" | "eh" | "ei" | "ej" | "ek" | "el" | "em" | "en" | "eo" | "ep" | "er" | "es" | "et" | "eu" | "ev" | "ew" | "ex" | "ey" | "ez" | "fa" | "fb" | "fc" | "fd" | "fe" | "ff" | "fg" | "fh" | "fi" | "fj" | "fk" | "fl" | "fm" | "fn" | "fo" | "fp" | "fq" | "fr" | "fs" | "ft" | "fu" | "fv" | "fw" | "fx" | "fy" | "fz" | "ga" | "gb" | "gc" | "gd" | "ge" | "gf" | "gg" | "gh" | "gi" | "gj" | "gk" | "gl" | "gn" | "go" | "gp" | "gq" | "gr" | "gs" | "gt" | "gv" | "gw" | "gx" | "gy" | "gz" | "ha" | "hb" | "hc" | "hd" | "he" | "hf" | "hg" | "hh" | "hi" | "hj" | "hk" | "hm" | "hn" | "ho" | "hp" | "hq" | "hr" | "hs" | "ht" | "hu" | "hv" | "hw" | "hx" | "hy" | "hz" | "ia" | "ib" | "ic" | "id" | "ie" | "if" | "ig" | "ih" | "ii" | "ij" | "ik" | "il" | "im" | "in" | "io" | "ip" | "iq" | "ir" | "is" | "it" | "iu" | "iv" | "iw" | "ix" | "iy" | "iz" | "ja" | "jb" | "jc" | "jd" | "je" | "jf" | "jg" | "jh" | "ji" | "jj" | "jk" | "jl" | "jm" | "jn" | "jo" | "jp" | "jq" | "jr" | "js" | "jt" | "ju" | "jv" | "jw" | "jx" | "jy" | "ka" | "kb" | "kc" | "kd" | "ke" | "kf" | "kg" | "kh" | "ki" | "kj" | "kk" | "kl" | "km" | "kn" | "ko") => Goal; getUnlocked: (id: "collec" | "av" | "hl" | "eq" | "ca" | "cb" | "gu" | "ap" | "jz" | "gm" | "questa" | "questb" | "questc" | "questd" | "queste" | "questf" | "lot" | "wdraft" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "aa" | "ab" | "ac" | "ad" | "ae" | "af" | "ag" | "ah" | "ai" | "aj" | "ak" | "al" | "am" | "an" | "ao" | "aq" | "ar" | "as" | "at" | "au" | "aw" | "ax" | "ay" | "az" | "ba" | "bb" | "bc" | "bd" | "be" | "bf" | "bg" | "bh" | "bi" | "bj" | "bk" | "bl" | "bm" | "bn" | "bo" | "bp" | "bq" | "br" | "bs" | "bt" | "bu" | "bv" | "bw" | "bx" | "by" | "bz" | "cc" | "cd" | "ce" | "cf" | "cg" | "ch" | "ci" | "cj" | "ck" | "cl" | "cm" | "cn" | "co" | "cp" | "cq" | "cr" | "cs" | "ct" | "cu" | "cv" | "cw" | "cx" | "cy" | "cz" | "da" | "db" | "dc" | "dd" | "de" | "df" | "dg" | "dh" | "di" | "dj" | "dk" | "dl" | "dm" | "dn" | "do" | "dp" | "dq" | "dr" | "ds" | "dt" | "du" | "dv" | "dw" | "dx" | "dy" | "dz" | "ea" | "eb" | "ec" | "ed" | "ee" | "ef" | "eg" | "eh" | "ei" | "ej" | "ek" | "el" | "em" | "en" | "eo" | "ep" | "er" | "es" | "et" | "eu" | "ev" | "ew" | "ex" | "ey" | "ez" | "fa" | "fb" | "fc" | "fd" | "fe" | "ff" | "fg" | "fh" | "fi" | "fj" | "fk" | "fl" | "fm" | "fn" | "fo" | "fp" | "fq" | "fr" | "fs" | "ft" | "fu" | "fv" | "fw" | "fx" | "fy" | "fz" | "ga" | "gb" | "gc" | "gd" | "ge" | "gf" | "gg" | "gh" | "gi" | "gj" | "gk" | "gl" | "gn" | "go" | "gp" | "gq" | "gr" | "gs" | "gt" | "gv" | "gw" | "gx" | "gy" | "gz" | "ha" | "hb" | "hc" | "hd" | "he" | "hf" | "hg" | "hh" | "hi" | "hj" | "hk" | "hm" | "hn" | "ho" | "hp" | "hq" | "hr" | "hs" | "ht" | "hu" | "hv" | "hw" | "hx" | "hy" | "hz" | "ia" | "ib" | "ic" | "id" | "ie" | "if" | "ig" | "ih" | "ii" | "ij" | "ik" | "il" | "im" | "in" | "io" | "ip" | "iq" | "ir" | "is" | "it" | "iu" | "iv" | "iw" | "ix" | "iy" | "iz" | "ja" | "jb" | "jc" | "jd" | "je" | "jf" | "jg" | "jh" | "ji" | "jj" | "jk" | "jl" | "jm" | "jn" | "jo" | "jp" | "jq" | "jr" | "js" | "jt" | "ju" | "jv" | "jw" | "jx" | "jy" | "ka" | "kb" | "kc" | "kd" | "ke" | "kf" | "kg" | "kh" | "ki" | "kj" | "kk" | "kl" | "km" | "kn" | "ko", points: number) => Unlock[]; }; declare const streetwriter: { goals: Record<"wapp" | "wgames" | "wquests" | "wwords" | "wvictories" | "w_Recycle" | "w_Joker" | "w_DragonPunch" | "w_Bomb" | "w_Double" | "w_LootView" | "w_Thief" | "w_Tornado" | "w_Mine" | "w_TrapBonusPoints" | "w_letter_a" | "w_letter_b" | "w_letter_c" | "w_letter_d" | "w_letter_e" | "w_letter_f" | "w_letter_g" | "w_letter_h" | "w_letter_i" | "w_letter_j" | "w_letter_k" | "w_letter_l" | "w_letter_m" | "w_letter_n" | "w_letter_o" | "w_letter_p" | "w_letter_q" | "w_letter_r" | "w_letter_s" | "w_letter_t" | "w_letter_u" | "w_letter_v" | "w_letter_w" | "w_letter_x" | "w_letter_y" | "w_letter_z" | "w_letter_ñ", Goal>; get: (id: "wapp" | "wgames" | "wquests" | "wwords" | "wvictories" | "w_Recycle" | "w_Joker" | "w_DragonPunch" | "w_Bomb" | "w_Double" | "w_LootView" | "w_Thief" | "w_Tornado" | "w_Mine" | "w_TrapBonusPoints" | "w_letter_a" | "w_letter_b" | "w_letter_c" | "w_letter_d" | "w_letter_e" | "w_letter_f" | "w_letter_g" | "w_letter_h" | "w_letter_i" | "w_letter_j" | "w_letter_k" | "w_letter_l" | "w_letter_m" | "w_letter_n" | "w_letter_o" | "w_letter_p" | "w_letter_q" | "w_letter_r" | "w_letter_s" | "w_letter_t" | "w_letter_u" | "w_letter_v" | "w_letter_w" | "w_letter_x" | "w_letter_y" | "w_letter_z" | "w_letter_ñ") => Goal; getUnlocked: (id: "wapp" | "wgames" | "wquests" | "wwords" | "wvictories" | "w_Recycle" | "w_Joker" | "w_DragonPunch" | "w_Bomb" | "w_Double" | "w_LootView" | "w_Thief" | "w_Tornado" | "w_Mine" | "w_TrapBonusPoints" | "w_letter_a" | "w_letter_b" | "w_letter_c" | "w_letter_d" | "w_letter_e" | "w_letter_f" | "w_letter_g" | "w_letter_h" | "w_letter_i" | "w_letter_j" | "w_letter_k" | "w_letter_l" | "w_letter_m" | "w_letter_n" | "w_letter_o" | "w_letter_p" | "w_letter_q" | "w_letter_r" | "w_letter_s" | "w_letter_t" | "w_letter_u" | "w_letter_v" | "w_letter_w" | "w_letter_x" | "w_letter_y" | "w_letter_z" | "w_letter_ñ", points: number) => Unlock[]; }; declare const studioquiz: { goals: Record<"star" | "plume" | "gg" | "mega" | "cult" | "spect" | "mega2" | "cult2" | "spect2" | "fayo" | "goldb" | "goldm" | "vip" | "micror" | "scienc" | "sjames" | "smarc" | "scharl" | "cervel" | "cinema" | "crayon" | "cygne" | "elepha" | "livref" | "livreo" | "lunett" | "manett" | "mask" | "micro" | "pomme" | "rouage" | "souris" | "tele" | "temple" | "ampoff" | "ampon" | "pink" | "ane" | "smurf" | "oreil" | "starm1" | "starmt" | "footb" | "baskt" | "rugby" | "billa" | "tennis" | "golf" | "belt1" | "belt2" | "belt3" | "belt4" | "belt5" | "belt33" | "belt34" | "belt44" | "belt54" | "card1" | "card2" | "card3" | "card4" | "vol1" | "vol2" | "vol3" | "bible" | "sqrd" | "facepl" | "choupi" | "facep2" | "objm" | "objc" | "objj" | "pates" | "pizza" | "fraise", Goal>; get: (id: "star" | "plume" | "gg" | "mega" | "cult" | "spect" | "mega2" | "cult2" | "spect2" | "fayo" | "goldb" | "goldm" | "vip" | "micror" | "scienc" | "sjames" | "smarc" | "scharl" | "cervel" | "cinema" | "crayon" | "cygne" | "elepha" | "livref" | "livreo" | "lunett" | "manett" | "mask" | "micro" | "pomme" | "rouage" | "souris" | "tele" | "temple" | "ampoff" | "ampon" | "pink" | "ane" | "smurf" | "oreil" | "starm1" | "starmt" | "footb" | "baskt" | "rugby" | "billa" | "tennis" | "golf" | "belt1" | "belt2" | "belt3" | "belt4" | "belt5" | "belt33" | "belt34" | "belt44" | "belt54" | "card1" | "card2" | "card3" | "card4" | "vol1" | "vol2" | "vol3" | "bible" | "sqrd" | "facepl" | "choupi" | "facep2" | "objm" | "objc" | "objj" | "pates" | "pizza" | "fraise") => Goal; getUnlocked: (id: "star" | "plume" | "gg" | "mega" | "cult" | "spect" | "mega2" | "cult2" | "spect2" | "fayo" | "goldb" | "goldm" | "vip" | "micror" | "scienc" | "sjames" | "smarc" | "scharl" | "cervel" | "cinema" | "crayon" | "cygne" | "elepha" | "livref" | "livreo" | "lunett" | "manett" | "mask" | "micro" | "pomme" | "rouage" | "souris" | "tele" | "temple" | "ampoff" | "ampon" | "pink" | "ane" | "smurf" | "oreil" | "starm1" | "starmt" | "footb" | "baskt" | "rugby" | "billa" | "tennis" | "golf" | "belt1" | "belt2" | "belt3" | "belt4" | "belt5" | "belt33" | "belt34" | "belt44" | "belt54" | "card1" | "card2" | "card3" | "card4" | "vol1" | "vol2" | "vol3" | "bible" | "sqrd" | "facepl" | "choupi" | "facep2" | "objm" | "objc" | "objj" | "pates" | "pizza" | "fraise", points: number) => Unlock[]; }; declare const teacherstory: { goals: Record<"Flash" | "ring" | "pomme" | "tennis" | "colec" | "allcolec" | "betats" | "bobj" | "oneshot" | "val1" | "val2" | "val3" | "val4" | "val5" | "val6" | "val7" | "val8" | "rabsolu" | "ponyland" | "vision" | "trolls" | "frogs" | "puces" | "totoc" | "dark" | "franc" | "jedi" | "bijou" | "sugar" | "ghost" | "plush" | "kissmAll" | "allStar" | "allschmoll" | "allfschmoll" | "allColle" | "science" | "allbilles" | "allapn" | "allyoyo" | "alldolly" | "allbrutes" | "allgort" | "gortv2" | "gametrot" | "smileyb" | "pattes" | "noeltroll" | "phone" | "talky" | "telec" | "ball1" | "ball2" | "totoJ" | "totoV" | "totoR" | "totoB" | "totoN" | "capN" | "capB" | "capR" | "capV" | "compa" | "equer" | "elast" | "bReb" | "bReb2" | "puceV" | "puceR" | "puceN" | "dents" | "gort" | "bball" | "toupB" | "toupV" | "toupR" | "toup1" | "toup2" | "mars" | "dgun" | "wgun" | "kalas" | "lancP" | "trolV" | "trolB" | "trolR" | "trolJ" | "trolO" | "trolM" | "piou" | "lapin" | "arbal" | "laseR" | "laseV" | "laseB" | "laseO" | "fourc" | "knife" | "pogs" | "epee1" | "epee2" | "epee3" | "epee4" | "epee5" | "epee6" | "gren1" | "gren2" | "gren3" | "gren4" | "marto" | "scoub" | "nba" | "macht" | "tamag" | "rototo" | "gameb" | "assas" | "licorn" | "pony1" | "pony2" | "pony3" | "pony4" | "smolV" | "smolJ" | "smolB" | "smolO" | "smolR" | "chuP" | "chuC" | "chuF" | "chuCo" | "chuO" | "barby" | "ken" | "gamji" | "diamV" | "diamM" | "diamR" | "diamB" | "diamJ" | "packP" | "psyco" | "ectog" | "pke" | "trap" | "jamb" | "dent2" | "enjo" | "yoyoB" | "yoyoR" | "kissmB" | "kissmJ" | "kissmN" | "kissmR" | "lukeL" | "pablo" | "dollar" | "superW" | "griffon" | "schC" | "schP" | "schR" | "schV" | "schF1" | "schF2" | "schF3" | "schF4" | "schF5" | "schF6" | "schF7" | "schF8" | "schF9" | "uhu" | "uhuM" | "pdc" | "tdc" | "sheep" | "gomo" | "igor" | "mouta" | "cerbere" | "euler" | "gyro" | "mkbaL" | "crist" | "pend" | "billAb" | "billAv" | "billAo" | "billO1" | "billO2" | "billO3" | "BillT" | "billOr" | "billAl" | "billM" | "billP" | "boitier" | "objec" | "jetabl" | "dollP1" | "dollPM" | "dollPVT" | "fifi" | "brutor" | "tanka" | "catG" | "dundee" | "kazou" | "prehista" | "maxi" | "grobra" | "mister" | "chuck" | "arbi" | "blueP" | "gortBD" | "gortBG" | "gortC" | "gortJD" | "gortJG" | "gortT" | "snowBall" | "gortBG2" | "gortTete2" | "gortCorps2" | "tum" | "moonp" | "turbo" | "stunts" | "raider" | "mototr" | "pad" | "totalin" | "badgeso" | "badgewa" | "badgeev" | "badgeno" | "badgeha" | "badgero" | "badgepi" | "kurli" | "scoubi2" | "taille" | "gluve" | "gluro" | "glubl" | "gluja" | "xmasBall" | "treemas" | "starmas" | "gift" | "choco" | "jesus" | "moise" | "Pet_IronWill" | "Pet_ElbowHit" | "Pet_Meditate" | "Pet_Explication" | "Pet_Valium" | "Pet_Sleep" | "Pet_Alzheimer" | "Pet_Club" | "Pet_Dring" | "Pet_Stock" | "Pet_Shock" | "Pet_ComeOn" | "Pet_Cheater" | "Pet_BonusXp" | "Pet_Tickle" | "Pet_Muscled" | "Pet_Hot" | "Pet_Exclude" | "Pet_BoringTransfer" | "Pet_NoLaugh" | "Pet_Chut" | "Pet_ToTheCorner" | "heddy" | "hpeggy" | "htizoc" | "hmuzot" | "hdwayne" | "htippex" | "hnuke" | "hsherlock" | "hat9" | "hat10" | "hat11", Goal>; get: (id: "Flash" | "ring" | "pomme" | "tennis" | "colec" | "allcolec" | "betats" | "bobj" | "oneshot" | "val1" | "val2" | "val3" | "val4" | "val5" | "val6" | "val7" | "val8" | "rabsolu" | "ponyland" | "vision" | "trolls" | "frogs" | "puces" | "totoc" | "dark" | "franc" | "jedi" | "bijou" | "sugar" | "ghost" | "plush" | "kissmAll" | "allStar" | "allschmoll" | "allfschmoll" | "allColle" | "science" | "allbilles" | "allapn" | "allyoyo" | "alldolly" | "allbrutes" | "allgort" | "gortv2" | "gametrot" | "smileyb" | "pattes" | "noeltroll" | "phone" | "talky" | "telec" | "ball1" | "ball2" | "totoJ" | "totoV" | "totoR" | "totoB" | "totoN" | "capN" | "capB" | "capR" | "capV" | "compa" | "equer" | "elast" | "bReb" | "bReb2" | "puceV" | "puceR" | "puceN" | "dents" | "gort" | "bball" | "toupB" | "toupV" | "toupR" | "toup1" | "toup2" | "mars" | "dgun" | "wgun" | "kalas" | "lancP" | "trolV" | "trolB" | "trolR" | "trolJ" | "trolO" | "trolM" | "piou" | "lapin" | "arbal" | "laseR" | "laseV" | "laseB" | "laseO" | "fourc" | "knife" | "pogs" | "epee1" | "epee2" | "epee3" | "epee4" | "epee5" | "epee6" | "gren1" | "gren2" | "gren3" | "gren4" | "marto" | "scoub" | "nba" | "macht" | "tamag" | "rototo" | "gameb" | "assas" | "licorn" | "pony1" | "pony2" | "pony3" | "pony4" | "smolV" | "smolJ" | "smolB" | "smolO" | "smolR" | "chuP" | "chuC" | "chuF" | "chuCo" | "chuO" | "barby" | "ken" | "gamji" | "diamV" | "diamM" | "diamR" | "diamB" | "diamJ" | "packP" | "psyco" | "ectog" | "pke" | "trap" | "jamb" | "dent2" | "enjo" | "yoyoB" | "yoyoR" | "kissmB" | "kissmJ" | "kissmN" | "kissmR" | "lukeL" | "pablo" | "dollar" | "superW" | "griffon" | "schC" | "schP" | "schR" | "schV" | "schF1" | "schF2" | "schF3" | "schF4" | "schF5" | "schF6" | "schF7" | "schF8" | "schF9" | "uhu" | "uhuM" | "pdc" | "tdc" | "sheep" | "gomo" | "igor" | "mouta" | "cerbere" | "euler" | "gyro" | "mkbaL" | "crist" | "pend" | "billAb" | "billAv" | "billAo" | "billO1" | "billO2" | "billO3" | "BillT" | "billOr" | "billAl" | "billM" | "billP" | "boitier" | "objec" | "jetabl" | "dollP1" | "dollPM" | "dollPVT" | "fifi" | "brutor" | "tanka" | "catG" | "dundee" | "kazou" | "prehista" | "maxi" | "grobra" | "mister" | "chuck" | "arbi" | "blueP" | "gortBD" | "gortBG" | "gortC" | "gortJD" | "gortJG" | "gortT" | "snowBall" | "gortBG2" | "gortTete2" | "gortCorps2" | "tum" | "moonp" | "turbo" | "stunts" | "raider" | "mototr" | "pad" | "totalin" | "badgeso" | "badgewa" | "badgeev" | "badgeno" | "badgeha" | "badgero" | "badgepi" | "kurli" | "scoubi2" | "taille" | "gluve" | "gluro" | "glubl" | "gluja" | "xmasBall" | "treemas" | "starmas" | "gift" | "choco" | "jesus" | "moise" | "Pet_IronWill" | "Pet_ElbowHit" | "Pet_Meditate" | "Pet_Explication" | "Pet_Valium" | "Pet_Sleep" | "Pet_Alzheimer" | "Pet_Club" | "Pet_Dring" | "Pet_Stock" | "Pet_Shock" | "Pet_ComeOn" | "Pet_Cheater" | "Pet_BonusXp" | "Pet_Tickle" | "Pet_Muscled" | "Pet_Hot" | "Pet_Exclude" | "Pet_BoringTransfer" | "Pet_NoLaugh" | "Pet_Chut" | "Pet_ToTheCorner" | "heddy" | "hpeggy" | "htizoc" | "hmuzot" | "hdwayne" | "htippex" | "hnuke" | "hsherlock" | "hat9" | "hat10" | "hat11") => Goal; getUnlocked: (id: "Flash" | "ring" | "pomme" | "tennis" | "colec" | "allcolec" | "betats" | "bobj" | "oneshot" | "val1" | "val2" | "val3" | "val4" | "val5" | "val6" | "val7" | "val8" | "rabsolu" | "ponyland" | "vision" | "trolls" | "frogs" | "puces" | "totoc" | "dark" | "franc" | "jedi" | "bijou" | "sugar" | "ghost" | "plush" | "kissmAll" | "allStar" | "allschmoll" | "allfschmoll" | "allColle" | "science" | "allbilles" | "allapn" | "allyoyo" | "alldolly" | "allbrutes" | "allgort" | "gortv2" | "gametrot" | "smileyb" | "pattes" | "noeltroll" | "phone" | "talky" | "telec" | "ball1" | "ball2" | "totoJ" | "totoV" | "totoR" | "totoB" | "totoN" | "capN" | "capB" | "capR" | "capV" | "compa" | "equer" | "elast" | "bReb" | "bReb2" | "puceV" | "puceR" | "puceN" | "dents" | "gort" | "bball" | "toupB" | "toupV" | "toupR" | "toup1" | "toup2" | "mars" | "dgun" | "wgun" | "kalas" | "lancP" | "trolV" | "trolB" | "trolR" | "trolJ" | "trolO" | "trolM" | "piou" | "lapin" | "arbal" | "laseR" | "laseV" | "laseB" | "laseO" | "fourc" | "knife" | "pogs" | "epee1" | "epee2" | "epee3" | "epee4" | "epee5" | "epee6" | "gren1" | "gren2" | "gren3" | "gren4" | "marto" | "scoub" | "nba" | "macht" | "tamag" | "rototo" | "gameb" | "assas" | "licorn" | "pony1" | "pony2" | "pony3" | "pony4" | "smolV" | "smolJ" | "smolB" | "smolO" | "smolR" | "chuP" | "chuC" | "chuF" | "chuCo" | "chuO" | "barby" | "ken" | "gamji" | "diamV" | "diamM" | "diamR" | "diamB" | "diamJ" | "packP" | "psyco" | "ectog" | "pke" | "trap" | "jamb" | "dent2" | "enjo" | "yoyoB" | "yoyoR" | "kissmB" | "kissmJ" | "kissmN" | "kissmR" | "lukeL" | "pablo" | "dollar" | "superW" | "griffon" | "schC" | "schP" | "schR" | "schV" | "schF1" | "schF2" | "schF3" | "schF4" | "schF5" | "schF6" | "schF7" | "schF8" | "schF9" | "uhu" | "uhuM" | "pdc" | "tdc" | "sheep" | "gomo" | "igor" | "mouta" | "cerbere" | "euler" | "gyro" | "mkbaL" | "crist" | "pend" | "billAb" | "billAv" | "billAo" | "billO1" | "billO2" | "billO3" | "BillT" | "billOr" | "billAl" | "billM" | "billP" | "boitier" | "objec" | "jetabl" | "dollP1" | "dollPM" | "dollPVT" | "fifi" | "brutor" | "tanka" | "catG" | "dundee" | "kazou" | "prehista" | "maxi" | "grobra" | "mister" | "chuck" | "arbi" | "blueP" | "gortBD" | "gortBG" | "gortC" | "gortJD" | "gortJG" | "gortT" | "snowBall" | "gortBG2" | "gortTete2" | "gortCorps2" | "tum" | "moonp" | "turbo" | "stunts" | "raider" | "mototr" | "pad" | "totalin" | "badgeso" | "badgewa" | "badgeev" | "badgeno" | "badgeha" | "badgero" | "badgepi" | "kurli" | "scoubi2" | "taille" | "gluve" | "gluro" | "glubl" | "gluja" | "xmasBall" | "treemas" | "starmas" | "gift" | "choco" | "jesus" | "moise" | "Pet_IronWill" | "Pet_ElbowHit" | "Pet_Meditate" | "Pet_Explication" | "Pet_Valium" | "Pet_Sleep" | "Pet_Alzheimer" | "Pet_Club" | "Pet_Dring" | "Pet_Stock" | "Pet_Shock" | "Pet_ComeOn" | "Pet_Cheater" | "Pet_BonusXp" | "Pet_Tickle" | "Pet_Muscled" | "Pet_Hot" | "Pet_Exclude" | "Pet_BoringTransfer" | "Pet_NoLaugh" | "Pet_Chut" | "Pet_ToTheCorner" | "heddy" | "hpeggy" | "htizoc" | "hmuzot" | "hdwayne" | "htippex" | "hnuke" | "hsherlock" | "hat9" | "hat10" | "hat11", points: number) => Unlock[]; }; declare const _default: { alphabounce: { goals: Record<"planets" | "earth" | "mission" | "map" | "escorp" | "furi", Goal>; get: (id: "planets" | "earth" | "mission" | "map" | "escorp" | "furi") => Goal; getUnlocked: (id: "planets" | "earth" | "mission" | "map" | "escorp" | "furi", points: number) => Unlock[]; }; croquemotel: { goals: Record<"hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "lab", Goal>; get: (id: "hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "lab") => Goal; getUnlocked: (id: "hosted" | "okbase" | "okvip" | "okfrnd" | "star" | "serv" | "room" | "sendc" | "pick" | "advert" | "