Advertisement
Guest User

Untitled

a guest
Apr 10th, 2017
604
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.23 KB | None | 0 0
  1.  
  2. #######################################################################
  3. # +-----------------------------------------------------------------+ #
  4. # | Biome Inheritance | #
  5. # +-----------------------------------------------------------------+ #
  6. #######################################################################
  7.  
  8. # This should be the value of the biomeConfig you wish to extend.
  9. # The extended config will be loaded, at which point the configs included below
  10. # will overwrite any configs loaded from the extended config.
  11. BiomeExtends:
  12.  
  13. # When set to true, all resources of the parent biome (if any) will be copied
  14. # to the resources queue of this biome. If a resource in the parent biome looks
  15. # very similar to that of a child biome (for example, two ores of the same type)
  16. # it won't be copied.
  17. ResourceInheritance: true
  18.  
  19.  
  20. #######################################################################
  21. # +-----------------------------------------------------------------+ #
  22. # | Biome placement | #
  23. # +-----------------------------------------------------------------+ #
  24. #######################################################################
  25.  
  26. # Biome size from 0 to GenerationDepth. Defines in which biome layer this biome will be generated (see GenerationDepth).
  27. # Higher numbers give a smaller biome, lower numbers a larger biome.
  28. # How this setting is used depends on the value of BiomeMode in the WorldConfig.
  29. # It will be used for:
  30. # - normal biomes, ice biomes, isle biomes and border biomes when BiomeMode is set to BeforeGroups
  31. # - biomes spawned as part of a BiomeGroup when BiomeMode is set to Normal.
  32. # For biomes spawned as isles, borders or rivers other settings are available.
  33. # Isle biomes: BiomeSizeWhenIsle (see below)
  34. # Border biomes: BiomeSizeWhenBorder (see below)
  35. # River biomes: RiverSize (see WorldConfig)
  36. BiomeSize: 4
  37.  
  38. # Biome rarity from 100 to 1. If this is normal or ice biome - chance for spawn this biome then others.
  39. # Example for normal biome :
  40. # 100 rarity mean 1/6 chance than other ( with 6 default normal biomes).
  41. # 50 rarity mean 1/11 chance than other
  42. # For isle biomes see the BiomeRarityWhenIsle setting below.
  43. # Doesn`t work on Ocean and River (frozen versions too) biomes when not added as normal biome.
  44. BiomeRarity: 100
  45.  
  46. # The hexadecimal color value of this biome. Used in the output of the /tc map command,
  47. # and used in the input of BiomeMode: FromImage.
  48. BiomeColor: #3D3F3C
  49.  
  50. # Replace this biome to specified after the terrain is generated.
  51. # This will make the world files contain the id of the specified biome, instead of the id of this biome.
  52. # This will cause saplings, colors and mob spawning work as in specified biome.
  53. ReplaceToBiomeName: Forest
  54.  
  55. ####################
  56. # Isle biomes only #
  57. ####################
  58.  
  59. # To spawn a biome as an isle, you need to add it first to the
  60. # IsleBiomes list in the WorldConfig.
  61.  
  62. # List of biomes in which this biome will spawn as an isle.
  63. # For example, Mushroom Isles spawn inside the Ocean biome.
  64. IsleInBiome:
  65.  
  66. # Size of this biome when spawned as an isle biome in BiomeMode: Normal.
  67. # Valid values range from 0 to GenerationDepth.
  68. # Larger numbers give *smaller* islands. The biome must be smaller than the biome it's going
  69. # to spawn in, so the BiomeSizeWhenIsle number must be larger than the BiomeSize of the other biome.
  70. BiomeSizeWhenIsle: 6
  71.  
  72. # Rarity of this biome when spawned as an isle biome in BiomeMode: Normal.
  73. BiomeRarityWhenIsle: 97
  74.  
  75. ######################
  76. # Border biomes only #
  77. ######################
  78.  
  79. # To spawn a biome as a border, you need to add it first to the
  80. # BorderBiomes list in the WorldConfig.
  81.  
  82. # List of biomes this biome can be a border of.
  83. # For example, the Beach biome is a border on the Ocean biome, so
  84. # it can spawn anywhere on the border of an ocean.
  85. BiomeIsBorder:
  86.  
  87. # List of biomes that cancel spawning of this biome.
  88. # For example, the Beach biome will never spawn next to an Extreme Hills biome.
  89. NotBorderNear:
  90.  
  91. # Size of this biome when spawned as a border biome in BiomeMode: Normal.
  92. # Valid values range from 0 to GenerationDepth.
  93. # Larger numbers give *smaller* borders. The biome must be smaller than the biome it's going
  94. # to spawn in, so the BiomeSizeWhenBorder number must be larger than the BiomeSize of the other biome.
  95. BiomeSizeWhenBorder: 8
  96.  
  97.  
  98. #######################################################################
  99. # +-----------------------------------------------------------------+ #
  100. # | Terrain height and volatility | #
  101. # +-----------------------------------------------------------------+ #
  102. #######################################################################
  103.  
  104. # BiomeHeight mean how much height will be added in terrain generation
  105. # It is double value from -10.0 to 10.0
  106. # Value 0.0 equivalent half of map height with all other default settings
  107. BiomeHeight: 2.3
  108.  
  109. # Biome volatility.
  110. BiomeVolatility: 0.0
  111.  
  112. # Smooth radius between biomes. Must be between 0 and 32, inclusive. The resulting
  113. # smooth radius seems to be (thisSmoothRadius + 1 + smoothRadiusOfBiomeOnOtherSide) * 4 .
  114. # So if two biomes next to each other have both a smooth radius of 2, the
  115. # resulting smooth area will be (2 + 1 + 2) * 4 = 20 blocks wide.
  116. SmoothRadius: 4
  117.  
  118. # If this value is greater than 0, then it will affect how much, on average, the terrain will rise before leveling off when it begins to increase in elevation.
  119. # If the value is less than 0, then it will cause the terrain to either increase to a lower height before leveling out or decrease in height if the value is a large enough negative.
  120. MaxAverageHeight: 0.0
  121.  
  122. # If this value is greater than 0, then it will affect how much, on average, the terrain (usually at the ottom of the ocean) will fall before leveling off when it begins to decrease in elevation.
  123. # If the value is less than 0, then it will cause the terrain to either fall to a lesser depth before leveling out or increase in height if the value is a large enough negative.
  124. MaxAverageDepth: 0.0
  125.  
  126. # Another type of noise. This noise is independent from biomes. The larger the values the more chaotic/volatile landscape generation becomes.
  127. # Setting the values to negative will have the opposite effect and make landscape generation calmer/gentler.
  128. Volatility1: 0.0
  129.  
  130. Volatility2: 0.0
  131.  
  132. # Adjust the weight of the corresponding volatility settings. This allows you to change how prevalent you want either of the volatility settings to be in the terrain.
  133. VolatilityWeight1: 0.5
  134.  
  135. VolatilityWeight2: 0.45
  136.  
  137. # Disable all noises except Volatility1 and Volatility2. Also disable default block chance from height.
  138. DisableBiomeHeight: false
  139.  
  140. # List of custom height factors, 17 double entries, each controls about 7
  141. # blocks height, starting at the bottom of the world. Positive entry - larger chance of spawn blocks, negative - smaller
  142. # Values which affect your configuration may be found only experimentally. Values may be very big, like ~3000.0 depends from height
  143. # Example:
  144. # CustomHeightControl:0.0,-2500.0,0.0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
  145. # Makes empty layer above bedrock layer.
  146. CustomHeightControl: 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 200.0, 400.0, 600.0, 400.0, 400.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
  147.  
  148.  
  149. #######################################################################
  150. # +-----------------------------------------------------------------+ #
  151. # | Rivers | #
  152. # +-----------------------------------------------------------------+ #
  153. #######################################################################
  154.  
  155. # There are two different river systems - the standard one and the improved one.
  156. # See the ImprovedRivers settting in the WorldConfig. Both modes have different
  157. # river settings, so carefully read the headers to know which settings you can use.
  158.  
  159. ########################
  160. # ImprovedRivers:false #
  161. ########################
  162.  
  163. # Only available when ImprovedRivers is set to false in the WorldConfig.
  164. # Sets which biome is used as the river biome.
  165. RiverBiome: River
  166.  
  167. #######################
  168. # ImprovedRivers:true #
  169. #######################
  170.  
  171. # Only available when ImprovedRivers is set to true in the WorldConfig.
  172.  
  173. # Works the same as BiomeHeight (scroll up), but is used where a river is generated in this biome
  174. RiverHeight: -1.0
  175.  
  176. # Works the same as BiomeVolatility (scroll up), but is used where a river is generated in this biome
  177. RiverVolatility: 0.3
  178.  
  179. # Works the same as WaterLevelMax (scroll down), but is used where a river is generated in this biome
  180. # Can be used to create elevated rivers
  181. RiverWaterLevel: 63
  182.  
  183. # Works the same as CustomHeightControl (scroll up), but is used where a river is generated in this biome
  184. RiverCustomHeightControl: 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0
  185.  
  186.  
  187. #######################################################################
  188. # +-----------------------------------------------------------------+ #
  189. # | Blocks | #
  190. # +-----------------------------------------------------------------+ #
  191. #######################################################################
  192.  
  193. # Change this to generate something else than stone in the biome.
  194. StoneBlock: STONE
  195.  
  196. # Surface block, usually GRASS.
  197. SurfaceBlock: STONE
  198.  
  199. # Block from stone to surface, like dirt in most biomes.
  200. GroundBlock: STONE
  201.  
  202. # Setting for biomes with more complex surface and ground blocks.
  203. # Each column in the world has a noise value from what appears to be -7 to 7.
  204. # Values near 0 are more common than values near -7 and 7. This setting is
  205. # used to change the surface block based on the noise value for the column.
  206. # Syntax: SurfaceBlockName,GroundBlockName,MaxNoise,[AnotherSurfaceBlockName,[AnotherGroundBlockName,MaxNoise[,...]]
  207. # Example: SurfaceAndGroundControl: STONE,STONE,-0.8,GRAVEL,STONE,0.0,DIRT,DIRT,10.0
  208. # When the noise is below -0.8, stone is the surface and ground block, between -0.8 and 0
  209. # gravel with stone just below and between 0.0 and 10.0 there's only dirt.
  210. # Because 10.0 is higher than the noise can ever get, the normal SurfaceBlock
  211. # and GroundBlock will never appear in this biome.
  212.  
  213. # Alternatively, you can use Mesa, MesaForest or MesaBryce to get blocks
  214. # like the blocks found in the Mesa biomes.
  215. SurfaceAndGroundControl:
  216.  
  217. # Replace Variable: (blockFrom,blockTo[:blockDataTo][,minHeight,maxHeight])
  218. # Example :
  219. # ReplacedBlocks: (GRASS,DIRT,100,127),(GRAVEL,GLASS)
  220. # Replace grass block to dirt from 100 to 127 height and replace gravel to glass on all height
  221. ReplacedBlocks: None
  222.  
  223. ################################
  224. # Water / Lava & Frozen States #
  225. ################################
  226.  
  227. # Set this to false to use the "Water / Lava & Frozen States" settings of this biome.
  228. UseWorldWaterLevel: true
  229.  
  230. # Set water level. Every empty between this levels will be fill water or another block from WaterBlock.
  231. WaterLevelMax: 63
  232.  
  233. WaterLevelMin: 0
  234.  
  235. # Block used as water in WaterLevelMax
  236. WaterBlock: STATIONARY_WATER
  237.  
  238. # Block used as ice. Ice only spawns if the BiomeTemperture is low enough.
  239. IceBlock: ICE
  240.  
  241. # Block used as cooled or frozen lava.
  242. # Set this to OBSIDIAN for "frozen" lava lakes in cold biomes
  243. CooledLavaBlock: STATIONARY_LAVA
  244.  
  245.  
  246. #######################################################################
  247. # +-----------------------------------------------------------------+ #
  248. # | Visuals and weather | #
  249. # +-----------------------------------------------------------------+ #
  250. #######################################################################
  251.  
  252. # Most of the settings here only have an effect on players with the client version of Terrain Control installed.
  253. # Biome temperature. Float value from 0.0 to 2.0.
  254. # When this value is around 0.2, snow will fall on mountain peaks above y=90.
  255. # When this value is around 0.1, the whole biome will be covered in snow and ice.
  256. # However, on default biomes, this won't do anything except changing the grass and leaves colors slightly.
  257. BiomeTemperature: 0.5
  258.  
  259. # Biome wetness. Float value from 0.0 to 1.0.
  260. # If this biome is a custom biome, and this value is set to 0, no rain will fall.
  261. # On default biomes, this won't do anything except changing the grass and leaves colors slightly.
  262. BiomeWetness: 0.5
  263.  
  264. # Biome sky color.
  265. SkyColor: #7BA5FF
  266.  
  267. # Biome water color multiplier.
  268. WaterColor: #FFFFFF
  269.  
  270. # Biome grass color.
  271. GrassColor: #FFFFFF
  272.  
  273. # Whether the grass color is a multiplier.
  274. # If you set it to true, the color will be based on this value, the BiomeTemperature and the BiomeWetness.
  275. # If you set it to false, the grass color will be just this color.
  276. GrassColorIsMultiplier: true
  277.  
  278. # Biome foliage color.
  279. FoliageColor: #FFFFFF
  280.  
  281. # Whether the foliage color is a multiplier. See GrassColorIsMultiplier for details.
  282. FoliageColorIsMultiplier: true
  283.  
  284.  
  285. #######################################################################
  286. # +-----------------------------------------------------------------+ #
  287. # | Resource queue | #
  288. # +-----------------------------------------------------------------+ #
  289. #######################################################################
  290.  
  291. # This section control all resources spawning after terrain generation.
  292. # The resources will be placed in this order.
  293.  
  294. # Keep in mind that a high size, frequency or rarity might slow down terrain generation.
  295.  
  296. # Possible resources:
  297. # DoResourceInheritance(true|false)
  298. # SmallLake(BlockName,Frequency,Rarity,MinAltitude,MaxAltitude)
  299. # Dungeon(Frequency,Rarity,MinAltitude,MaxAltitude)
  300. # UnderGroundLake(MinSize,MaxSize,Frequency,Rarity,MinAltitude,MaxAltitude)
  301. # Ore(BlockName,Size,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....])
  302. # UnderWaterOre(BlockName,Size,Frequency,Rarity,BlockSource[,BlockSource2,BlockSource3.....])
  303. # CustomObject(Object[,AnotherObject[,...]])
  304. # CustomStructure([Object,Object_Chance[,AnotherObject,Object_Chance[,...]]])
  305. # SurfacePatch(BlockName,DecorationBlockName,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....]
  306. # Tree(Frequency,TreeType,TreeTypeChance[,AdditionalTreeType,AdditionalTreeTypeChance.....])
  307. # Plant(PlantType,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....])
  308. # Grass(PlantType,Grouped/NotGrouped,Frequency,Rarity,BlockSource[,BlockSource2,BlockSource3.....])
  309. # Reed(BlockName,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....])
  310. # Cactus(BlockName,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....])
  311. # Liquid(BlockName,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,BlockSource3.....])
  312. # AboveWaterRes(BlockName,Frequency,Rarity)
  313. # Vines(Frequency,Rarity,MinAltitude,MaxAltitude)
  314. # Vein(BlockName,MinRadius,MaxRadius,Rarity,OreSize,OreFrequency,OreRarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,..])
  315. # Well(BaseBlockName,HalfSlabBlockName,WaterBlockName,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,..])
  316. # Boulder(BlockName,Frequency,Rarity,MinAltitude,MaxAltitude,BlockSource[,BlockSource2,..]
  317. # IceSpike(BlockName,IceSpikeType,Frequency,Rarity,MinAltitude,MaxAltitude,Blocksource[,BlockSource2,...])
  318.  
  319. # BlockName: must be the name of a block. May include block data, like "WOOL:1".
  320. # BlockSource: list of blocks the resource can spawn on/in. You can also use "Solid" or "All".
  321. # Frequency: number of attempts to place this resource in each chunk.
  322. # Rarity: chance for each attempt, Rarity:100 - mean 100% to pass, Rarity:1 - mean 1% to pass.
  323. # MinAltitude and MaxAltitude: height limits.
  324. # BlockSource: mean where or whereupon resource will be placed
  325. # TreeType: Tree (original oak tree) - BigTree - Birch - TallBirch - SwampTree -
  326. # HugeMushroom (randomly red or brown) - HugeRedMushroom - HugeBrownMushroom -
  327. # Taiga1 - Taiga2 - HugeTaiga1 - HugeTaiga2 -
  328. # JungleTree (the huge jungle tree) - GroundBush - CocoaTree (smaller jungle tree)
  329. # DarkOak (from the roofed forest biome) - Acacia
  330. # You can also use your own custom objects, as long as they have set Tree to true in their settings.
  331. # TreeTypeChance: similar to Rarity. Example:
  332. # Tree(10,Taiga1,35,Taiga2,100) - plugin tries 10 times, for each attempt it tries to place Taiga1 (35% chance),
  333. # if that fails, it attempts to place Taiga2 (100% chance).
  334. # PlantType: one of the plant types: Allium, AzureBluet, BlueOrchid, BrownMushroom, Dandelion, DeadBush, DoubleTallgrass, Fern, LargeFern, Lilac, OrangeTulip, OxeyeDaisy, Peony, PinkTulip, Poppy, RedMushroom, RedTulip, RoseBush, Sunflower, Tallgrass, WhiteTulip
  335. # or simply a BlockName
  336. # IceSpikeType: one of the ice spike types: Basement,HugeSpike,SmallSpike
  337. # Object: can be a any kind of custom object (bo2 or bo3) but without the file extension. You can
  338. # also use UseWorld to spawn one of the object in the WorldObjects folder and UseBiome to spawn
  339. # one of the objects in the BiomeObjects setting. When using BO2s for UseWorld, the BO2 must have
  340. # this biome in their spawnInBiome setting.
  341.  
  342. # Plant and Grass resource: both a resource of one block. Plant can place blocks underground, Grass cannot.
  343. # Liquid resource: a one-block water or lava source
  344. # SmallLake and UnderGroundLake resources: small lakes of about 8x8 blocks
  345. # Vein resource: not in vanilla. Starts an area where ores will spawn. Can be slow, so use a low Rarity (smaller than 1).
  346. # CustomStructure resource: starts a BO3 structure in the chunk.
  347.  
  348. Ore(DIRT,33,10,100.0,0,50,STONE)
  349. Ore(GRAVEL,33,8,100.0,0,50,STONE)
  350. Ore(STONE:1,33,10,100.0,0,50,STONE)
  351. Ore(STONE:3,33,10,100.0,0,50,STONE)
  352. Ore(STONE:5,33,10,100.0,0,50,STONE)
  353. Ore(COAL_ORE,17,20,100.0,0,50,STONE)
  354. Ore(IRON_ORE,9,20,100.0,0,50,STONE)
  355. Ore(GOLD_ORE,9,2,100.0,0,31,STONE)
  356. Ore(REDSTONE_ORE,8,8,100.0,0,15,STONE)
  357. Ore(DIAMOND_ORE,8,1,100.0,0,15,STONE)
  358. Ore(LAPIS_ORE,7,1,100.0,0,15,STONE)
  359. UnderGroundLake(25,60,2,5.0,0,49)
  360. Vines(100,85.0,50,255)
  361. SurfacePatch(MOSSY_COBBLESTONE,AIR,198,220,STONE)
  362. Dungeon(8,100.0,0,256)
  363. CustomObject(UseBiome)
  364.  
  365. #######################################################################
  366. # +-----------------------------------------------------------------+ #
  367. # | Sapling resource | #
  368. # +-----------------------------------------------------------------+ #
  369. #######################################################################
  370.  
  371. # TerrainControl allows you to grow your custom objects from saplings, instead
  372. # of the vanilla trees. Add one or more Sapling functions here to override vanilla
  373. # spawning for that sapling.
  374.  
  375. # The syntax is: Sapling(SaplingType,TreeType,TreeType_Chance[,Additional_TreeType,Additional_TreeType_Chance.....])
  376. # Works like Tree resource instead first parameter.
  377.  
  378. # Sapling types: All, Oak, Redwood, Birch, SmallJungle, BigJungle, RedMushroom, BrownMushroom, Acacia, DarkOak, HugeRedwood
  379. # All - will make the tree spawn from all saplings, but not from mushrooms.
  380. # BigJungle - for when 4 jungle saplings grow at once.
  381. # RedMushroom/BrownMushroom - will only grow when bonemeal is used.
  382.  
  383. #######################################################################
  384. # +-----------------------------------------------------------------+ #
  385. # | Custom objects | #
  386. # +-----------------------------------------------------------------+ #
  387. #######################################################################
  388.  
  389. # These objects will spawn when using the UseBiome keyword.
  390. BiomeObjects: Stone1, Stone2, Stone3, Stone4, Stone5, Stone6, Stone7, Stone8, Stone9, Stone10, Stone11, Stone12
  391.  
  392.  
  393. #######################################################################
  394. # +-----------------------------------------------------------------+ #
  395. # | Structures | #
  396. # +-----------------------------------------------------------------+ #
  397. #######################################################################
  398.  
  399. # Here you can change, enable or disable the stuctures.
  400. # If you have disabled the structure in the WorldConfig, it won't spawn,
  401. # regardless of these settings.
  402. # Disables strongholds for this biome. If there is no suitable biome nearby,
  403. # Minecraft will ignore this setting.
  404. StrongholdsEnabled: true
  405.  
  406. # Whether an Ocean Monument can be placed in this biome.
  407. OceanMonumentsEnabled: false
  408.  
  409. # Whether a Nether Fortress can start in this biome. Might extend to neighbor biomes.
  410. NetherFortressesEnabled: true
  411.  
  412. # Whether Woodland Mansions are enabled in this biome.
  413. MansionsEnabled: false
  414.  
  415. # The village type in this biome. Can be wood, sandstone or disabled.
  416. VillageType: disabled
  417.  
  418. # The mineshaft type in this biome. Can be normal, mesa or disabled.
  419. MineshaftType: normal
  420.  
  421. # The mineshaft rarity from 0 to 100. 0 = no mineshafts, 1 = default rarity, 100 = a wooden chaos.
  422. # Note that mineshafts will never spawn, regardless of this setting, if
  423. # MineshaftType was set to disabled
  424. MineshaftRarity: 1.0
  425.  
  426. # The type of the aboveground rare building in this biome. Can be desertPyramid, jungleTemple, swampHut, igloo or disabled.
  427. RareBuildingType: disabled
  428.  
  429.  
  430. #######################################################################
  431. # +-----------------------------------------------------------------+ #
  432. # | Mob spawning | #
  433. # +-----------------------------------------------------------------+ #
  434. #######################################################################
  435.  
  436. # This is where you configure mob spawning. Mobs spawn in groups,
  437. # see http://minecraft.gamepedia.com/Spawn#Mob_spawning
  438.  
  439. # A mobgroups is made of four parts. They are mob, weight, min and max.
  440. # The mob is one of the Minecraft internal mob names.
  441. # See http://minecraft.gamepedia.com/Chunk_format#Mobs
  442. # The weight is used for a random selection. This is a positive integer.
  443. # The min is the minimum amount of mobs spawning as a group. This is a positive integer.
  444. # The max is the maximum amount of mobs spawning as a group. This is a positive integer.
  445.  
  446. # Mob groups are written to the config files in Json.
  447. # Json is a tree document format: http://en.wikipedia.org/wiki/JSON
  448. # Write a mobgroup like this: {"mob": "mobname", "weight": integer, "min": integer, "max": integer}
  449. # For example: {"mob": "Ocelot", "weight": 10, "min": 2, "max": 6}
  450. # For example: {"mob": "MushroomCow", "weight": 5, "min": 2, "max": 2}
  451. # A json list of mobgroups looks like this: [mobgroup, mobgroup, mobgroup...]
  452. # This would be an ampty list: []
  453. # You can validate your json here: http://jsonlint.com/
  454.  
  455. # There are four categories of mobs: monsters, creatures, water creatures and ambient creatures.
  456. # In custom biomes, you can add your own mobgroups in the lists below. In the vanilla biomes,
  457. # your changes are ignored.
  458.  
  459. # The monsters (skeletons, zombies, etc.) that spawn in this biome
  460. SpawnMonsters: [{"mob": "spider", "weight": 100, "min": 4, "max": 4}, {"mob": "zombie", "weight": 100, "min": 4, "max": 4}, {"mob": "skeleton", "weight": 100, "min": 4, "max": 4}, {"mob": "creeper", "weight": 100, "min": 4, "max": 4}, {"mob": "slime", "weight": 100, "min": 4, "max": 4}, {"mob": "enderman", "weight": 10, "min": 1, "max": 4}, {"mob": "witch", "weight": 5, "min": 1, "max": 1}]
  461.  
  462. # The friendly creatures (cows, pigs, etc.) that spawn in this biome
  463. SpawnCreatures: [{"mob": "sheep", "weight": 12, "min": 4, "max": 4}, {"mob": "pig", "weight": 10, "min": 4, "max": 4}, {"mob": "chicken", "weight": 10, "min": 4, "max": 4}, {"mob": "cow", "weight": 8, "min": 4, "max": 4}]
  464.  
  465. # The water creatures (only squids in vanilla) that spawn in this biome
  466. SpawnWaterCreatures: [{"mob": "squid", "weight": 10, "min": 4, "max": 4}]
  467.  
  468. # The ambient creatures (only bats in vanila) that spawn in this biome
  469. SpawnAmbientCreatures: [{"mob": "bat", "weight": 10, "min": 8, "max": 8}]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement