Skip to content

Commit

Permalink
adding cartographer to modded mapObjects (gameBalance submod), change…
Browse files Browse the repository at this point in the history
…d limiter to 10,000
  • Loading branch information
thiscris committed Mar 20, 2024
1 parent aba0214 commit 9d9e588
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 3 deletions.
102 changes: 102 additions & 0 deletions hota/Mods/gameBalance/content/config/hotaGameBalance/mapObjects.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
{
"core:cartographer" : {
"name": "Cartographer",
"handler": "configurable",
"base" : {
"sounds" : {
"visit" : ["LIGHTHOUSE"]
}
},
"types" : {
"cartographerWater" : {

"aiValue" : 5000,
"rmg" : {
"zoneLimit" : 1,
"value" : 5000,
"rarity" : 20
},
"compatibilityIdentifiers" : [ "water" ],
"visitMode" : "unlimited",
"canRefuse" : true,
"rewards" : [
{
"limiter" : { "resources" : { "gold" : 10000 } },
"message" : 25,
"resources" : {
"gold" : -10000
},
"revealTiles" : {
"water" : 1
}
}
],
"onEmptyMessage" : "{Cartographer}\r\n\r\n28",
"onSelectMessage" : "{Cartographer}\r\n\r\nA big show is taking place at the Colosseum today. You enter the arena and hold the audience in awe with your magical prowess. Insatiable hunger for knowledge is what makes a true mage, so you gladly accept the first prize, which is one the newest academical handbooks",
"onVisitedMessage": "{Cartographer}\r\n\r\nModerator of the Colosseum instantly recognises you but respectfully denies entrance to the competitor zone. You probably should rather be featuring as a talent judge here!"

},
"cartographerLand" : {
"name":"Remove name tag",
"aiValue": 10000,
"rmg" : {
"zoneLimit" : 1,
"value" : 10000,
"rarity" : 2
},
"compatibilityIdentifiers" : [ "land" ],
"visitMode" : "unlimited",
"canRefuse" : true,
"rewards" : [
{
"limiter" : { "resources" : { "gold" : 100 } },
"message" : 26,
"resources" : {
"gold" : -100
},
"revealTiles" : {
"surface" : 1,
"water" : -1,
"rock" : -1
}
}
],
"onEmptyMessage" : "{Cartographer}\r\n\r\n28",
"onSelectMessage" : "{Cartographer}\r\n\r\nA big show is taking place at the Colosseum today. You enter the arena and hold the audience in awe with your magical prowess. Insatiable hunger for knowledge is what makes a true mage, so you gladly accept the first prize, which is one the newest academical handbooks",
"onVisitedMessage": "{Cartographer}\r\n\r\nModerator of the Colosseum instantly recognises you but respectfully denies entrance to the competitor zone. You probably should rather be featuring as a talent judge here!"

},
"cartographerSubterranean" : {

"aiValue" : 7500,
"rmg" : {
"zoneLimit" : 1,
"value" : 7500,
"rarity" : 20
},
"compatibilityIdentifiers" : [ "subterra" ],
"visitMode" : "unlimited",
"canRefuse" : true,
"rewards" : [
{
"limiter" : { "resources" : { "gold" : 10000 } },
"message" : 27,
"resources" : {
"gold" : -10000
},
"revealTiles" : {
"subterra" : 1,
"water" : -1,
"rock" : -1,
"surface" : -1
}
}
],
"onEmptyMessage" : "{Cartographer}\r\n\r\n28",
"onSelectMessage" : "{Cartographer}\r\n\r\nA big show is taking place at the Colosseum today. You enter the arena and hold the audience in awe with your magical prowess. Insatiable hunger for knowledge is what makes a true mage, so you gladly accept the first prize, which is one the newest academical handbooks",
"onVisitedMessage": "{Cartographer}\r\n\r\nModerator of the Colosseum instantly recognises you but respectfully denies entrance to the competitor zone. You probably should rather be featuring as a talent judge here!"

}
}
}
}
11 changes: 8 additions & 3 deletions hota/Mods/gameBalance/mod.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
{
"name" : "Game balance",
"description" : "Balance improvements made by HotA Crew for Horn of The Abbys expansion.",
"description" : "Balance improvements made by HotA Crew for Horn of The Abyss expansion.",
"modType" : "Mechanics",
"author": "Kuririn & avatar",
"contact": "http://forum.df2.ru/index.php?showtopic=32286",
"version" : "1.3.6",
"version" : "1.3.7",
"changelog" :
{
"1.3.7" : [ "Changed the price for cartographer maps from 1000 to 10000 gold" ]
},
"depends" : [ "hota.mapobjects" ],
"settings" : {
"dwellings" : {
Expand Down Expand Up @@ -47,7 +51,8 @@
[
"config/hotaGameBalance/objectsRmgValues.json",
"config/hotaGameBalance/creatureBanks.json",
"config/hotaGameBalance/objectsRefusable.json"
"config/hotaGameBalance/objectsRefusable.json",
"config/hotaGameBalance/mapObjects.json"
],
"chinese" : {
"name" : "游戏平衡",
Expand Down

0 comments on commit 9d9e588

Please sign in to comment.