Advertisement
Guest User

Untitled

a guest
Sep 30th, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3.  
  4. Specifies the spawning behavior of Ender Zoo mobs.
  5. These settings can be modified, and changes can be made to non Ender Zoo mobs in the SpawnConfig_User.xml file.
  6. This file will be replaced each time Ender Zoo is loaded and is only placed in the config dir as a guide to creating
  7. entries in the user file.
  8.  
  9. Note that all entries are applied in order. This allows, for example, for existing slime spawns in swamps to be removed in one
  10. entry, and then in the following (using a different ID) they can be added back with different rates / group sizes.
  11.  
  12. The basic format for the file is as follows:
  13. <SpawnConfig>
  14.  
  15. <entry ...> 1..x
  16. <biomeFilter ...> 0..x
  17. <biome/> 1..x
  18. </biomeFilter>
  19. <dimensionExclude .../> 0..x
  20. </entry>
  21.  
  22. </SpawnConfig>
  23.  
  24. entry attributes:
  25. - entry.id:
  26. Used to uniquely identify the entry. If an entry with this id exists in the user file that entry will replace the one in
  27. the core file.
  28.  
  29. - entry.mobName: The name used to register the mob with Minecraft.
  30.  
  31. - entry.creatureType: (Optional, default monster) The type of mob. Values must match the names in EnumCreatureType. Valid entries:
  32. monster, creature, ambient, waterCreature
  33.  
  34. - entry.rate: The rate at which the entities are spawned, for example 10=Enderman spawn rate, 100=Zombie spawn rate
  35.  
  36. - entry.minGroupSize: (Optional, default 1) the minimum number of mobs to be spawned per group
  37.  
  38. - entry.maxGroupSize: (Optional, default 3) the maximum number of mobs to be spawned per group
  39.  
  40. - entry.remove: (Optional, default false) if true all all existing spawn entries matching this entry will be removed rather than added
  41. in this case the rate is ignored, but must still be included cause I am lazy
  42.  
  43. Each entry can include 0 or more biome filters. To remove an entry from the core file via the user file create an entry with the
  44. same id and no biome filters.
  45.  
  46.  
  47. biomeFilter attributes:
  48. - type: The type of filter
  49. 'any': if a biome matches any of biome entries, and does not match any of the excluded entries, the mob will be able to spawn in that biome
  50. 'all': if a biome matches all of biome entries, and does not match any of the excluded entries, the mob will be able to spawn in that biome
  51.  
  52.  
  53. Each filter must contain one or more biome entries
  54.  
  55. biome attributes:
  56. - type: The name of the biome type. There can be many biomes registered for a specific type based on the mods installed
  57. Any number of biome types can be listed for a filter
  58. All valid biome types that are listed in BiomeDictionary.Type. The base types are:
  59. MESA, FOREST, PLAINS, MOUNTAIN, HILLS, SWAMP, SANDY, SNOWY, WASTELAND, BEACH, MUSHROOM, OCEAN, RIVER, NETHER, END
  60.  
  61. The special name BASE_LAND_TYPES includes:
  62. MESA, FOREST, PLAINS, MOUNTAIN, HILLS, SWAMP, SANDY, SNOWY, WASTELAND, BEACH
  63.  
  64. - name: The name of the biome. Must be exactly as registered.
  65.  
  66. - exclude: (Optional, default false) when set to false any biomes matching this type will be excluded. For example, if
  67. FOREST is specified as a biome type, and CONIFEROUS is specified with the exclude set to true, then the mob will not
  68. spawn in a forest with coniferous trees (e.g. spruce) will be excluded
  69.  
  70.  
  71. Each entry can include 0 or more dimension excludes. This will stop the mob spawning in the specified dimension/s.
  72. Dimension excludes can be defined in three ways: by name, by ID and by ID range
  73.  
  74. dimensionExclude attributes:
  75. - name: The name of the dimension, for example: "The End", "Nether", or "Overworld"
  76. <dimensionExclude name="The End"/>
  77. - id: The ID of the dimension to be excluded
  78. <dimensionExclude id="1"/>
  79. - idStart: The minimum ID to be excluded
  80. - idEnd: The maximum ID to be excluded.
  81. <dimensionExclude idStart="2" idEnd="10"/>
  82. In this example the mob will not spawn in any dimension with an ID between 2 and 10 inclusive
  83.  
  84. -->
  85. <SpawnConfig>
  86.  
  87. <entry id="ConcussionCreeper" mobName="enderzoo.ConcussionCreeper" creatureType="monster" rate="40"
  88. minGroupSize="1" maxGroupSize="3" remove="false">
  89. <biomeFilter type="any">
  90. <biome type="BASE_LAND_TYPES" />
  91. <biome type="NETHER" exclude="true" />
  92. <biome type="END" exclude="true" />
  93. <biome type="MUSHROOM" exclude="true" />
  94. <biome type="PLAINS" exclude="true" />
  95. </biomeFilter>
  96. <dimensionExclude name="Twilight Forest"/>
  97. <dimensionExclude name="Dungeon"/>
  98. </entry>
  99.  
  100. <entry id="EnderMiny" mobName="enderzoo.Enderminy" rate="30">
  101. <biomeFilter type="any">
  102. <biome type="FOREST" />
  103. <biome type="SWAMP" />
  104. <biome type="PLAINS" exclude="true" />
  105. <biome type="JUNGLE" />
  106. <biome type="NETHER" exclude="true" />
  107. <biome type="END" exclude="true" />
  108. </biomeFilter>
  109. <dimensionExclude name="Twilight Forest"/>
  110. </entry>
  111.  
  112. <entry id="FallenKnight" mobName="enderzoo.FallenKnight" rate="30" minGroupSize="1" maxGroupSize="4">
  113. <biomeFilter type="any">
  114. <biome type="PLAINS" />
  115. <biome type="NETHER" exclude="true" />
  116. <biome type="END" exclude="true" />
  117. <biome type="PLAINS" exclude="true" />
  118. </biomeFilter>
  119. <dimensionExclude name="Twilight Forest"/>
  120. </entry>
  121.  
  122. <entry id="WitherWitch" mobName="enderzoo.WitherWitch" rate="5" minGroupSize="1" maxGroupSize="1">
  123. <biomeFilter type="any">
  124. <biome type="FOREST" />
  125. <biome type="SWAMP" />
  126. <biome type="PLAINS" />
  127. <biome type="HILLS" />
  128. <biome type="MOUNTAIN" />
  129. <biome type="NETHER" exclude="true" />
  130. <biome type="END" exclude="true" />
  131. </biomeFilter>
  132. <dimensionExclude name="Twilight Forest"/>
  133. </entry>
  134.  
  135. <entry id="DireWolf" mobName="enderzoo.DireWolf" rate="30" minGroupSize="2" maxGroupSize="6">
  136. <biomeFilter type="all">
  137. <biome type="SNOWY" />
  138. <biome type="CONIFEROUS" />
  139. <biome type="NETHER" exclude="true" />
  140. <biome type="END" exclude="true" />
  141. <biome type="PLAINS" exclude="true" />
  142. </biomeFilter>
  143. </entry>
  144.  
  145.  
  146. <entry id="OCCrab" mobName="com.Oceancraft.common.EntityCrab" creatureType="waterCreature" rate="45"
  147. minGroupSize="1" maxGroupSize="3" remove="false">
  148. <biomeFilter type="any">
  149. <biome type="PLAINS"/>
  150. </biomeFilter>
  151. <dimensionExclude name="Twilight Forest"/>
  152. <dimensionExclude name="Dungeon"/>
  153. </entry>
  154.  
  155. <entry id="OCKing Crab" mobName="com.Oceancraft.common.EntityKingCrab" creatureType="waterCreature" rate="8"
  156. minGroupSize="1" maxGroupSize="3" remove="false">
  157. <biomeFilter type="any">
  158. <biome type="PLAINS"/>
  159. </biomeFilter>
  160. <dimensionExclude name="Twilight Forest"/>
  161. <dimensionExclude name="Dungeon"/>
  162. </entry>
  163.  
  164. <entry id="OCFishy" mobName="com.Oceancraft.common.EntityFishy" creatureType="waterCreature" rate="100"
  165. minGroupSize="3" maxGroupSize="4" remove="false">
  166. <biomeFilter type="any">
  167. <biome type="PLAINS"/>
  168. </biomeFilter>
  169. <dimensionExclude name="Twilight Forest"/>
  170. <dimensionExclude name="Dungeon"/>
  171. </entry>
  172.  
  173. <entry id="OCWhale" mobName="com.Oceancraft.common.EntityWhale" creatureType="waterCreature" rate="20"
  174. minGroupSize="1" maxGroupSize="3" remove="false">
  175. <biomeFilter type="any">
  176. <biome type="PLAINS"/>
  177. </biomeFilter>
  178. <dimensionExclude name="Twilight Forest"/>
  179. <dimensionExclude name="Dungeon"/>
  180. </entry>
  181.  
  182. <entry id="OCOrca" mobName="com.Oceancraft.common.EntityOrca" creatureType="waterCreature" rate="15"
  183. minGroupSize="1" maxGroupSize="3" remove="false">
  184. <biomeFilter type="any">
  185. <biome type="PLAINS"/>
  186. </biomeFilter>
  187. <dimensionExclude name="Twilight Forest"/>
  188. <dimensionExclude name="Dungeon"/>
  189. </entry>
  190.  
  191. <entry id="OCShark" mobName="com.Oceancraft.common.EntityShark" creatureType="waterCreature" rate="95"
  192. minGroupSize="1" maxGroupSize="2" remove="false">
  193. <biomeFilter type="any">
  194. <biome type="PLAINS"/>
  195. </biomeFilter>
  196. <dimensionExclude name="Twilight Forest"/>
  197. <dimensionExclude name="Dungeon"/>
  198. </entry>
  199.  
  200. <entry id="OCSeaturtle" mobName="com.Oceancraft.common.EntitySeaTurtle" creatureType="waterCreature" rate="80"
  201. minGroupSize="3" maxGroupSize="5" remove="false">
  202. <biomeFilter type="any">
  203. <biome type="PLAINS"/>
  204. </biomeFilter>
  205. <dimensionExclude name="Twilight Forest"/>
  206. <dimensionExclude name="Dungeon"/>
  207. </entry>
  208.  
  209. <entry id="OCRog" mobName="com.Oceancraft.common.EntityRog" creatureType="waterCreature" rate="45"
  210. minGroupSize="1" maxGroupSize="3" remove="false">
  211. <biomeFilter type="any">
  212. <biome type="PLAINS"/>
  213. </biomeFilter>
  214. <dimensionExclude name="Twilight Forest"/>
  215. <dimensionExclude name="Dungeon"/>
  216. </entry>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement