| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- {
- /// These are objects that covered by concept of "configurable object" and have their entire configuration in this config
- "leanTo" :{
- "index" : 39,
- "handler": "configurable",
- "base" : {
- "sounds" : {
- "visit" : ["GENIE"]
- }
- },
- "types" : {
- "leanTo" : {
- "index" : 0,
- "aiValue" : 500,
- "rmg" : {
- "value" : 500,
- "rarity" : 100
- },
-
- "onVisitedMessage" : 65,
- "visitMode" : "once",
- "selectMode" : "selectFirst",
- "rewards" : [
- {
- "message" : 64,
- "resources" : [
- {
- "list" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
- "min" : 1,
- "max" : 5
- }
- ]
- }
- ]
- }
- }
- },
- "corpse" :{
- "index" : 22,
- "handler": "configurable",
- "base" : {
- "sounds" : {
- "visit" : ["MYSTERY"]
- }
- },
- "types" : {
- "corpse" : {
- "index" : 0,
- "aiValue" : 500,
- "rmg" : {
- "value" : 500,
- "rarity" : 100
- },
-
- "onVisitedMessage" : 38,
- "blockedVisitable" : true,
- "visitMode" : "once",
- "selectMode" : "selectFirst",
- "rewards" : [
- {
- "appearChance" : { "max" : 10 },
- "message" : 37,
- "artifacts" : [ { "class" : "TREASURE" } ]
- },
- {
- "appearChance" : { "min" : 10, "max" : 20 },
- "message" : 37,
- "artifacts" : [ { "class" : "MINOR" } ]
- },
- {
- "appearChance" : { "min" : 20, "max" : 100 },
- "message" : 38,
- }
- ]
- }
- }
- },
- "wagon" :{
- "index" : 105,
- "handler": "configurable",
- "base" : {
- "sounds" : {
- "visit" : ["GENIE"]
- }
- },
- "types" : {
- "wagon" : {
- "index" : 0,
- "aiValue" : 500,
- "rmg" : {
- "value" : 500,
- "rarity" : 50
- },
-
- "onVisitedMessage" : 156,
- "visitMode" : "once",
- "selectMode" : "selectFirst",
- "rewards" : [
- {
- "appearChance" : { "max" : 20 },
- "message" : 155,
- "artifacts" : [ { "class" : "TREASURE" } ]
- },
- {
- "appearChance" : { "min" : 20, "max" : 40 },
- "message" : 155,
- "artifacts" : [ { "class" : "MINOR" } ]
- },
- {
- "message" : 154,
- "appearChance" : { "min" : 40, "max" : 90 },
- "resources" : [
- {
- "list" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
- "min" : 2,
- "max" : 5
- },
- ]
- },
- {
- "appearChance" : { "min" : 90, "max" : 100 },
- "message" : 156,
- }
- ]
- }
- }
- },
- "warriorTomb" : {
- "index" : 108,
- "handler": "configurable",
- "base" : {
- "sounds" : {
- "visit" : ["GRAVEYARD"]
- }
- },
- "types" : {
- "warriorTomb" : {
- "index" : 0,
- "aiValue" : 6000,
- "rmg" : {
- "value" : 6000,
- "rarity" : 20
- },
-
- "onSelectMessage" : 161,
- "visitMode" : "once",
- "selectMode" : "selectFirst",
- "onVisited" : [
- {
- "message" : 163,
- "bonuses" : [ { "type" : "MORALE", "val" : -3, "duration" : "ONE_BATTLE" } ]
- }
- ],
- "rewards" : [
- {
- "appearChance" : { "max" : 30 },
- "message" : 162,
- "artifacts" : [ { "class" : "TREASURE" } ],
- "bonuses" : [ { "type" : "MORALE", "val" : -3, "duration" : "ONE_BATTLE" } ]
- },
- {
- "appearChance" : { "min" : 30, "max" : 80 },
- "message" : 162,
- "artifacts" : [ { "class" : "MINOR" } ],
- "bonuses" : [ { "type" : "MORALE", "val" : -3, "duration" : "ONE_BATTLE" } ]
- },
- {
- "appearChance" : { "min" : 80, "max" : 95 },
- "message" : 162,
- "artifacts" : [ { "class" : "MAJOR" } ],
- "bonuses" : [ { "type" : "MORALE", "val" : -3, "duration" : "ONE_BATTLE" } ]
- },
- {
- "appearChance" : { "min" : 95 },
- "message" : 162,
- "artifacts" : [ { "class" : "RELIC" } ],
- "bonuses" : [ { "type" : "MORALE", "val" : -3, "duration" : "ONE_BATTLE" } ]
- }
- ]
- }
- }
- }
- }
|