1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-10 22:31:40 +02:00

Merge pull request #5425 from IvanSavenko/campfire_fix

[1.6.6] Fix campfire randomization to be in line with H3
This commit is contained in:
Ivan Savenko
2025-02-15 11:13:44 +02:00
committed by GitHub

View File

@@ -26,17 +26,47 @@
"selectMode" : "selectFirst",
"rewards" : [
{
"appearChance" : { "min" : 0, "max" : 33 },
"message" : 23,
"removeObject" : true,
"resources" : [
{
"anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
"min" : 4,
"max" : 6
"amount" : 4
},
{
"type" : "gold",
"amount" : [ 400, 500, 600 ]
"amount" : 400
}
]
},
{
"appearChance" : { "min" : 33, "max" : 66 },
"message" : 23,
"removeObject" : true,
"resources" : [
{
"anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
"amount" : 5
},
{
"type" : "gold",
"amount" : 500
}
]
},
{
"appearChance" : { "min" : 66, "max" : 100 },
"message" : 23,
"removeObject" : true,
"resources" : [
{
"anyOf" : [ "wood", "ore", "mercury", "gems", "sulfur", "crystal" ],
"amount" : 6
},
{
"type" : "gold",
"amount" : 600
}
]
}