Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Copy and patch the biome text files (add dot and patch to the name of the file like this: jungle.biome.patch) and put only this code:
[
{ "op" : "add", "path" : "/spawnProfile/groups/-", "value" : {
"select" : 1,
"pool" : [
[ 1.0000, "yourmonsterspawntype" ]
]
}
}
]
Create a text file named uniques.spawntypes.patch in the spawntypes folder of your mod and put this code:
[
{ "op" : "add", "path" : "/-", "value" : {
"name" : "yourmonsterspawntype",
"spawnParameters" : {
"area" : "surface",
"region" : "all",
"time" : "all"
},
"groupSize" : [1, 2],
"spawnChance" : 0.15,
"monsterType" : [
[1.00, "yourcustommonster"]
],
"monsterParameters" : {
"aggressive" : true
}
}
}
]
Change "yourmonsterspawntype" with the name you want for your monster group
Replace "yourcustommonster" with the name of your modded monster. Hope it help