Difference between revisions of "MobSpawner"
(→Spawner Types: Added the amount of spawnDelay on every spawner.) |
Hamham1111 (Talk | contribs) (→Spawner Rules) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 47: | Line 47: | ||
[[MobSpawner]]s can be found within any world inside of '''Dungeon'''s, [[Stronghold]]s, '''Nether Fortresses''' etc. | [[MobSpawner]]s can be found within any world inside of '''Dungeon'''s, [[Stronghold]]s, '''Nether Fortresses''' etc. | ||
* [[MobSpawner]]s, additionally, have a 5% chance to replace a generated [[Red Spawner]] within [[Deepvale]] or [[Greycliff]] structures. '''Red Spawners''' cannot be picked up. | * [[MobSpawner]]s, additionally, have a 5% chance to replace a generated [[Red Spawner]] within [[Deepvale]] or [[Greycliff]] structures. '''Red Spawners''' cannot be picked up. | ||
+ | |||
+ | === Spawner Rules === | ||
+ | Mob spawners will ATTEMPT to spawn a mob based on a list of chances. The default rule is it will attempt to spawn once between 500 and 1500 ticks. | ||
+ | At 20tps, this means that by default it will do one spawn cycle between every 25 and 75 seconds. This only applies to spawners with no spawns. | ||
+ | If there is spawns on it,the code takes a calculation of the total spawns it has made, and divides it by 20, adding this as a tick delay. This is for basic spawners. There are different delays for: | ||
+ | Ghasts, | ||
+ | Slimes, | ||
+ | Shadow swets, | ||
+ | Giants, | ||
+ | Wolves, | ||
+ | Chickens, | ||
+ | Moas, | ||
+ | Birds, | ||
+ | Villagers. | ||
+ | If a spawner tries to spawn in an area with a mob, it will fail. Same goes if it attempts to spawn in a block, or the mobcap is hit. Normal mob spawn rules still apply, such as light level etc. | ||
+ | Here is a graph on expected spawn times with the amount of spawns on the spawner. | ||
+ | <gallery> | ||
+ | File:Image 2021-09-04 005803.png|Mob Spawns | ||
+ | </gallery> | ||
+ | |||
+ | |||
==== Other Information ==== | ==== Other Information ==== | ||
Line 53: | Line 74: | ||
* Some [[MobSpawner]]'s will only spawn their mob if the conditions are valid for the mob that is being spawned. | * Some [[MobSpawner]]'s will only spawn their mob if the conditions are valid for the mob that is being spawned. | ||
* [[MobSpawner]]s get weaker the more entities they spawn. Use a <item n="Essence of Undeath"/> on the [[MobSpawner]] to negate the total entities spawned by '''1,000'''. | * [[MobSpawner]]s get weaker the more entities they spawn. Use a <item n="Essence of Undeath"/> on the [[MobSpawner]] to negate the total entities spawned by '''1,000'''. | ||
+ | ** The spawn delay for [[MobSpawner]]s is calculated using the following algorithm: '''{{H:title|This is different with every EntityType. The default for this is 500-1500 ticks.|spawnDelay}} + ({{H:title|This is the total amount of spawns that have occured from that Mob Spawner. You can view this by hovering over the Mob Spawner in your Inventory or whilst it's placed.|totalSpawns}}/20)'''. | ||
* [[MobSpawner]]s '''can be privated like a Chest or Door.''' | * [[MobSpawner]]s '''can be privated like a Chest or Door.''' | ||
Line 233: | Line 255: | ||
* <mcitem name="MobSpawner Pig" size=32>'''Witch Spawner'''</mcitem> ''(Hostile Entity)'' | * <mcitem name="MobSpawner Pig" size=32>'''Witch Spawner'''</mcitem> ''(Hostile Entity)'' | ||
** '''Mob Drops: '''<item n="Glass Bottle"/>, <item n="Redstone"/>, <item n="Gunpowder"/>, <item n="Sugar"/>, <item n="Glowstone Dust"/>, <item n="Stick"/> and <item n="Spider Eye"/> | ** '''Mob Drops: '''<item n="Glass Bottle"/>, <item n="Redstone"/>, <item n="Gunpowder"/>, <item n="Sugar"/>, <item n="Glowstone Dust"/>, <item n="Stick"/> and <item n="Spider Eye"/> | ||
+ | ** '''Conditions: ''' Enough Space. | ||
+ | ** {{H:title|This is how fast entities will spawn from the specified spawner. The amount of ticks in a second is 20.|'''Spawn Speed (''ticks''):'''}} 350-1350 + (totalSpawns/100). | ||
+ | ** '''How to Obtain:''' A previous ''Special Offer'', <item n="Supply Crate"/>s and [[Christmas Cracker]]s. | ||
+ | |||
+ | * <mcitem name="MobSpawner Pig" size=32>'''Snow Golem Spawner'''</mcitem> ''(Passive Entity)'' | ||
+ | ** '''Mob Drops: '''<item n="Snowball"/> | ||
** '''Conditions: ''' Enough Space. | ** '''Conditions: ''' Enough Space. | ||
** {{H:title|This is how fast entities will spawn from the specified spawner. The amount of ticks in a second is 20.|'''Spawn Speed (''ticks''):'''}} 350-1350 + (totalSpawns/100). | ** {{H:title|This is how fast entities will spawn from the specified spawner. The amount of ticks in a second is 20.|'''Spawn Speed (''ticks''):'''}} 350-1350 + (totalSpawns/100). |
Latest revision as of 01:00, 4 September 2021
Block ID: | 52 |
---|---|
Sub IDs: | Based on Mob Type |
Item Type: | Block |
Max Stack: | 1 |
Unique Function: | |
Infinitely spawn the mob specified based on Sub ID. |
Spawner Rarities | |
---|---|
About
A MobSpawner is a block that can be placed and will spawn its specified entity indefinitely. This block is from the original game but has a few tweaks to it within Craftland. Each mobspawner has its own unique value, rarity and uses. Some spawners are more useful than others and some are incredibly rare with some being common. All MobSpawners share the same texture excluding for the entity, that is being spawned, rotating inside of the MobSpawner. Any player can pick up a MobSpawner as long as it isn't Red and the player is using a Pickaxe.
MobSpawners can be found within any world inside of Dungeons, Strongholds, Nether Fortresses etc.
- MobSpawners, additionally, have a 5% chance to replace a generated Red Spawner within Deepvale or Greycliff structures. Red Spawners cannot be picked up.
Spawner Rules
Mob spawners will ATTEMPT to spawn a mob based on a list of chances. The default rule is it will attempt to spawn once between 500 and 1500 ticks. At 20tps, this means that by default it will do one spawn cycle between every 25 and 75 seconds. This only applies to spawners with no spawns. If there is spawns on it,the code takes a calculation of the total spawns it has made, and divides it by 20, adding this as a tick delay. This is for basic spawners. There are different delays for: Ghasts, Slimes, Shadow swets, Giants, Wolves, Chickens, Moas, Birds, Villagers. If a spawner tries to spawn in an area with a mob, it will fail. Same goes if it attempts to spawn in a block, or the mobcap is hit. Normal mob spawn rules still apply, such as light level etc. Here is a graph on expected spawn times with the amount of spawns on the spawner.
Other Information
- MobSpawner's can only be placed once every 10 blocks causing the best MobSpawner grinder for one user to be using a maximum of 64 spawners.
- MobSpawner's will only spawn their entity if a player is within 24 blocks.
- Some MobSpawner's will only spawn their mob if the conditions are valid for the mob that is being spawned.
- MobSpawners get weaker the more entities they spawn. Use a Essence Of Undeath on the MobSpawner to negate the total entities spawned by 1,000.
- The spawn delay for MobSpawners is calculated using the following algorithm: spawnDelay + (totalSpawns/20).
- MobSpawners can be privated like a Chest or Door.
Spawner Types
Common
- Cave Spider Spawner (Hostile Entity)
- Mob Drops: Spider Eye, Cobweb and String
- Conditions: Enough Space and Darkness.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates and Mine Shafts.
- Spider Spawner (Hostile Entity)
- Mob Drops: Spider Eye, Cobweb and String
- Conditions: Enough Space and Darkness.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates and Dungeons.
- Zombie Spawner (Hostile Entity)
- Mob Drops: Rotten Flesh, Iron Ingot, Carrot, Potato and Zombie Head
- Conditions: Enough Space and Darkness.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates and Dungeons.
- Skeleton Spawner (Hostile Entity)
- Mob Drops: Arrow, Bone, Bow and Skeleton Skull
- Conditions: Enough Space and Darkness.
- Special Interaction: Will spawn Wither Skeletons if placed in the Nether.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates and Dungeons.
Slightly Uncommon
- Zombie Pigman Spawner (Neutral Entity)
- Mob Drops: Rotten Flesh, Gold Nugget, Gold Ingot and Golden Sword
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates, Deepvale generation, purchasable from /voteshop for 150 Vote Points and the Server Store for 650 Credits (3,250,000 Coins).
- Ghast Spawner (Hostile Entity)
- Mob Drops: Ghast Tear and Gunpowder
- Conditions: Enough Space.
- Spawn Speed (ticks): 100-500 + (totalSpawns/100).
- How to Obtain: Supply Crates, purchasable from /voteshop for 200 Vote Points and the Server Store for 800 Credits (4,000,000 Coins).
- Creeper Spawner (Hostile Entity)
- Mob Drops: Gunpowder
- Conditions: Enough Space and Darkness.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates, Achievements (Kill 100 level 10 creepers), purchasable from /voteshop for 200 Vote Points and the Server Store for 650 Credits (3,250,000 Coins).
- Slime Spawner (Hostile Entity)
- Mob Drops: Slimeball
- Conditions: Enough Space.
- Special Interaction: Slime Spawners work better within a Slime Chunk.
- Spawn Speed (ticks): 35-535 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates, purchasable from /voteshop for 150 Vote Points and the Server Store for 650 Credits (3,250,000 Coins).
- Blaze Spawner (Hostile Entity)
- Mob Drops: Blaze Rod
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Deepvale generation, Supply Crates and Nether Fortresses.
Uncommon
- Chicken Spawner (Passive Entity)
- Mob Drops: Cannot parse input (Cooked Chicken when using Flame/Fire Aspect), Egg and Feather
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 250-950 + (totalSpawns/100).
- How to Obtain: Purchasable from the Server Store for 500 Credits (2,500,000 Coins).
- Squid Spawner (Passive Entity)
- Mob Drops: Ink Sac
- Conditions: Water.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Purchasable from the Server Store for 800 Credits (4,000,000 Coins).
- Silverfish Spawner (Hostile Entity)
- Mob Drops: None.
- Conditions: Enough Space.
- Special Interaction: Silverfish can move into a block of Stone, Cobblestone, Stone Bricks etc. and turn it into a Monster Egg.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Strongholds.
- Pig Spawner (Passive Entity)
- Mob Drops: Raw Porkchop (Cooked Porkchop when using Flame/Fire Aspect)
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Achievements (Kill 50,000 mobs total).
- Sheep Spawner (Passive Entity)
- Mob Drops: Raw Mutton (Cooked Mutton when using Flame/Fire Aspect) and Wool (Dependant on the colour of the Sheep)
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates and are purchasable from the Server Store for 650 Credits (3,250,000 Coins).
- Phyg Spawner (Passive Entity)
- Mob Drops: Raw Porkchop (Cooked Porkchop when using Flame/Fire Aspect) and Feather
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Arena and Supply Crates.
- Shadow Aerbunny Spawner (Passive Entity)
- Mob Drops: String
- Conditions: Enough Space, Light and Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Elysian Dungeon and Supply Crates.
Rare
- Villager Spawner (Passive Entity)
- Mob Drops: None.
- Conditions: Enough Space.
- Special Interaction: Villagers can be traded with and do not despawn.
- Spawn Speed (ticks): 700-1000 + (totalSpawns/100).
- How to Obtain: Arena and Supply Crates.
- Panda Spawner (Passive Entity)
- Mob Drops: Raw Beef (Steak when using Flame/Fire Aspect)
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Special Interaction: When a Panda is killed the player is struck by Lightning.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Purchasable from the Server Store for 1,000 Credits (5,000,000 Coins).
- Moa Spawner (Passive Entity)
- Mob Drops: Blue Moa Egg (Dependant on the colour of the Moa) and Feather
- Conditions: Enough Space, Light and Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 600-2100 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Aerbunny Spawner (Passive Entity)
- Mob Drops: String
- Conditions: Enough Space, Light and Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Swet Spawner (Hostile Entity)
- Mob Drops: Swet Orb and Glowstone
- Conditions: Enough Space, Light and Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Iron Golem Spawner (Neutral Entity)
- Mob Drops: Iron Ingot and Poppy
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Neonic Swet Spawner (Hostile Entity)
- Mob Drops: Purple Glowstone and Blue Glowstone
- Conditions: Enough Space.
- Spawn Speed (ticks): 190-890 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Cow Spawner (Passive Entity)
- Mob Drops: Raw Beef (Steak when using Flame/Fire Aspect)
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Special Interaction: Will spawn Flying Cows if placed in the Aether.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Shadow Mooshroom Spawner (Passive Entity)
- Mob Drops: Raw Beef (Steak when using Flame/Fire Aspect)
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Supply Crates.
- Wolf Spawner (Neutral Entity)
- Mob Drops: None.
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 300-1200 + (totalSpawns/100).
- How to Obtain: Year of the Dog NPC for 64x Wolf Head and a previous Special Offer.
- Pirate Spawner (Hostile Entity)
Super Rare
- Witch Spawner (Hostile Entity)
- Mob Drops: Glass Bottle, Redstone, Gunpowder, Sugar, Glowstone Dust, Stick and Spider Eye
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer, Supply Crates and Christmas Crackers.
- Snow Golem Spawner (Passive Entity)
- Mob Drops: Snowball
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer.
- Wither Skeleton Spawner (Hostile Entity)
- Mob Drops: Bone, Coal and Wither Skeleton Skull
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer.
- Tiny Bird Spawner (Passive Entity)
- Mob Drops: None.
- Conditions: Enough Space and Light.
- Spawn Speed (ticks): 250-700 + (totalSpawns/100).
- How to Obtain: A previous Special Offer, at /warp ticket shop for 5 Staff Event Ticket (Blue) and are purchasable from the Server Store for 540 Credits (2,700,000 Coins).
- Raven Spawner (Passive Entity)
- Mob Drops: None.
- Conditions: Enough Space and Light.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: Arena and is purchasable from the Server Store for 630 Credits (3,150,000 Coins).
- Blizz Spawner (Hostile Entity)
- Mob Drops: Blizz Rod
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer.
- Shadow Cockatrice Spawner (Hostile Entity)
- Mob Drops: Feather
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer.
- Ocelot Spawner (Passive Entity)
- Mob Drops: Raw Fish
- Conditions: Enough Space, Light and Grass Blocks/Aether Grass/Shadow Grass.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer.
Ultra Rare
- Zephyr Spawner (Hostile Entity)
- Mob Drops: Cold Aercloud
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer and from a realm that no longer exists.
- Valkyrie Spawner (Neutral Entity)
- Mob Drops: Victory Medal
- Conditions: Enough Space.
- Spawn Speed (ticks): 350-1350 + (totalSpawns/100).
- How to Obtain: A previous Special Offer and from a realm that no longer exists.
Unobtainable
- Boss Spawner (Bosses)
- Mob Drops: Bosses and Boss Loot
- Conditions: ???
- Special Interaction: Requires items to be fed to it in order to spawn a boss.
- How to Obtain: Admin command/Extended Creative Mode
- Giant Spawner (Hostile Entity)
- Conditions: Enough Space.
- Spawn Speed (ticks): 600-2100 + (totalSpawns/100).
- How to Obtain: Admin command/Extended Creative Mode