Advertisement
Guest User

mushroomisland

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