| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- {
- /// These are objects that covered by concept of "configurable object" and have their entire configuration in this config
- "campfire" :{
- "index" : 12,
- "handler": "configurable",
- "base" : {
- "blockedVisitable" : true,
- "removable": true,
- "sounds" : {
- "ambient" : ["LOOPCAMP"],
- "visit" : ["EXPERNCE"],
- "removal" : [ "PICKUP01", "PICKUP02", "PICKUP03", "PICKUP04", "PICKUP05", "PICKUP06", "PICKUP07" ]
- }
- },
- "types" : {
- "campfire" : {
- "index" : 0,
- "aiValue" : 2000,
- "rmg" : {
- "value" : 2000,
- "rarity" : 500
- },
- "variables" : {
- "resource" : {
- "gainedResourceA" : { // Note: this variable name is used by engine for H3M loading
- "anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ]
- },
- "gainedResourceB" : { // Note: this variable name is used by engine for H3M loading
- "type" : "gold"
- }
- },
- "number" : {
- "gainedAmountA" : { // Note: this variable name is used by engine for H3M loading
- "min" : 4,
- "max" : 6
- },
- "gainedAmountB" : { // Note: this variable name is used by engine for H3M loading
- "min" : 400,
- "max" : 600
- }
- },
- },
- "compatibilityIdentifiers" : [ "object" ],
- "visitMode" : "unlimited",
- "selectMode" : "selectFirst",
- "rewards" : [
- {
- "appearChance" : { "min" : 0, "max" : 33 },
- "mapDice" : -1,
- "message" : 23,
- "removeObject" : true,
- "resources" : [
- {
- "anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
- "amount" : 4
- },
- {
- "type" : "gold",
- "amount" : 400
- }
- ]
- },
- {
- "appearChance" : { "min" : 33, "max" : 66 },
- "mapDice" : -1,
- "message" : 23,
- "removeObject" : true,
- "resources" : [
- {
- "anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
- "amount" : 5
- },
- {
- "type" : "gold",
- "amount" : 500
- }
- ]
- },
- {
- "appearChance" : { "min" : 66, "max" : 100 },
- "mapDice" : -1,
- "message" : 23,
- "removeObject" : true,
- "resources" : [
- {
- "anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
- "amount" : 6
- },
- {
- "type" : "gold",
- "amount" : 600
- }
- ]
- },
- {
- // special reward only used on loading hota map, never present othervice
- "appearChance" : { "min" : 0, "max" : 0 },
- "mapDice" : 0,
- "message" : 23,
- "removeObject" : true,
- "resources" : [
- {
- "type" : "@gainedResourceA",
- "amount" : "@gainedAmountA"
- },
- {
- "type" : "@gainedResourceB",
- "amount" : "@gainedAmountB"
- }
- ]
- }
- ]
- }
- }
- },
- "flotsam" :{
- "index" : 29,
- "handler": "configurable",
- "base" : {
- "blockedVisitable" : true,
- "removable": true,
- "sounds" : {
- "visit" : ["GENIE"],
- "removal" : [ "PICKUP01", "PICKUP02", "PICKUP03", "PICKUP04", "PICKUP05", "PICKUP06", "PICKUP07" ]
- }
- },
- "types" : {
- "flotsam" : {
- "index" : 0,
- "aiValue" : 2000,
- "rmg" : {
- "value" : 2000,
- "rarity" : 100
- },
- "compatibilityIdentifiers" : [ "object" ],
- "visitMode" : "unlimited",
- "selectMode" : "selectFirst",
- "rewards" : [
- {
- "message" : 51,
- "mapDice" : 0,
- "appearChance" : { "max" : 25 },
- "removeObject" : true
- },
- {
- "message" : 52,
- "mapDice" : 1,
- "appearChance" : { "min" : 25, "max" : 50 },
- "removeObject" : true,
- "resources" : {
- "wood" : 5
- }
- },
- {
- "message" : 53,
- "mapDice" : 2,
- "appearChance" : { "min" : 50, "max" : 75 },
- "removeObject" : true,
- "resources" : {
- "wood" : 5,
- "gold" : 200
- }
- },
- {
- "message" : 54,
- "mapDice" : 3,
- "appearChance" : { "min" : 75 },
- "removeObject" : true,
- "resources" : {
- "wood" : 10,
- "gold" : 500
- }
- }
- ]
- }
- }
- },
- "seaChest" :{
- "index" : 82,
- "handler": "configurable",
- "base" : {
- "blockedVisitable" : true,
- "removable": true,
- "sounds" : {
- "visit" : ["CHEST"],
- "removal" : [ "PICKUP01", "PICKUP02", "PICKUP03", "PICKUP04", "PICKUP05", "PICKUP06", "PICKUP07" ]
- }
- },
- "types" : {
- "seaChest" : {
- "index" : 0,
- "aiValue" : 1500,
- "rmg" : {
- "value" : 1500,
- "rarity" : 500
- },
- "compatibilityIdentifiers" : [ "object" ],
- "visitMode" : "unlimited",
- "selectMode" : "selectFirst",
-
- "variables" : {
- "artifact" : {
- "gainedArtifact" : { // Note: this variable name is used by engine for H3M loading
- "class" : "TREASURE"
- }
- }
- },
-
- "rewards" : [
- {
- "appearChance" : { "max" : 20 },
- "message" : 116,
- "mapDice" : 0,
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 20, "max" : 30 },
- "message" : 117,
- "mapDice" : 2,
- "removeObject" : true,
- "artifacts" : [ "@gainedArtifact" ],
- "resources" : {
- "gold" : 1000
- }
- },
- {
- "appearChance" : { "min" : 30 },
- "mapDice" : 1,
- "message" : 118,
- "removeObject" : true,
- "resources" : {
- "gold" : 1500
- }
- }
- ]
- }
- }
- },
- "shipwreckSurvivor" : {
- "index" : 86,
- "handler": "configurable",
- "base" : {
- "blockedVisitable" : true,
- "removable": true,
- "sounds" : {
- "visit" : ["TREASURE"],
- "removal" : [ "PICKUP01", "PICKUP02", "PICKUP03", "PICKUP04", "PICKUP05", "PICKUP06", "PICKUP07" ]
- }
- },
- "types" : {
- "shipwreckSurvivor" : {
- "index" : 0,
- "aiValue" : 1500,
- "rmg" : {
- "value" : 1500,
- "rarity" : 50
- },
- "compatibilityIdentifiers" : [ "object" ],
- "visitMode" : "unlimited",
- "selectMode" : "selectFirst",
- "variables" : {
- "artifact" : {
- "gainedArtifact" : { // Note: this variable name is used by engine for H3M loading
- "class" : "TREASURE"
- }
- }
- },
- "rewards" : [
- {
- "appearChance" : { "max" : 55 },
- "message" : 125,
- "mapDice" : 0,
- "removeObject" : true,
- "artifacts" : [ "@gainedArtifact" ]
- },
- {
- "appearChance" : { "min" : 55, "max" : 75 },
- "mapDice" : 1,
- "message" : 125,
- "removeObject" : true,
- "artifacts" : [ { "class" : "MINOR" } ]
- },
- {
- "appearChance" : { "min" : 75, "max" : 95 },
- "mapDice" : 2,
- "message" : 125,
- "removeObject" : true,
- "artifacts" : [ { "class" : "MAJOR" } ]
- },
- {
- "appearChance" : { "min" : 95 },
- "mapDice" : 3,
- "message" : 125,
- "removeObject" : true,
- "artifacts" : [ { "class" : "RELIC" } ]
- }
- ]
- }
- }
- },
- "treasureChest" : {
- "index" : 101,
- "handler": "configurable",
- "base" : {
- "removable": true,
- "sounds" : {
- "visit" : ["CHEST"],
- "removal" : [ "PICKUP01", "PICKUP02", "PICKUP03", "PICKUP04", "PICKUP05", "PICKUP06", "PICKUP07" ]
- }
- },
- "types" : {
- "treasureChest" : {
- "index" : 0,
- "aiValue" : 2000,
- "rmg" : {
- "value" : 1500,
- "rarity" : 1000
- },
- "compatibilityIdentifiers" : [ "object" ],
- "blockedVisitable" : true,
- "onSelectMessage" : 146,
- "visitMode" : "unlimited",
- "selectMode" : "selectPlayer",
-
- "variables" : {
- "artifact" : {
- "gainedArtifact" : { // Note: this variable name is used by engine for H3M loading
- "class" : "TREASURE"
- }
- }
- },
-
- "rewards" : [
- {
- "appearChance" : { "max" : 32 },
- "mapDice" : 0,
- "resources" : { "gold" : 1000 },
- "removeObject" : true,
- },
- {
- "appearChance" : { "max" : 32 },
- "mapDice" : 0,
- "heroExperience" : 500,
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 32, "max" : 64 },
- "mapDice" : 1,
- "resources" : { "gold" : 1500 },
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 32, "max" : 64 },
- "mapDice" : 1,
- "heroExperience" : 1000,
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 64, "max" : 95 },
- "mapDice" : 2,
- "resources" : { "gold" : 2000 },
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 64, "max" : 95 },
- "mapDice" : 2,
- "heroExperience" : 1500,
- "removeObject" : true,
- },
- {
- "appearChance" : { "min" : 95 },
- "mapDice" : 3,
- "message" : 145,
- "removeObject" : true,
- "artifacts" : [ "@gainedArtifact" ]
- }
- ]
- }
- }
- }
- }
|