Combat Expanded: Difference between revisions

From Official Gamemode 4 Wiki
Jump to navigation Jump to search
m (move formulas to Technical Details)
m (add missing info)
 
(28 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|type=Stand Alone
|type=Stand Alone
|creator=Thanathor
|creator=Thanathor
|versions=1.19}}
|versions=1.19.2, 1.20+}}
{{Incomplete}}
This module adds custom modifiers to armor, weapons, and mobs as well as a ramping difficulty curve the longer you survive.
<!-- Experimental Module! Features may be unbalanced and added or removed without an easy upgrade path. -->
 
==Features==
Combat Expanded expands on the game's difficulty. Mobs will be given additional stats and gear scaling over time. This gear can be dropped for the player with special modifiers that alter the players stats and abilities.
 
=== Home Bed ===
Players can designate a bed as a "Home Bed" by sleeping in it. Only the last bed slept in by any player can be a Home Bed. While a player is online their Home Bed serves as a beacon that lowers difficulty in an area of 128 blocks around it. Only one Home Bed can affect an area at a time.
 
=== Natural Regeneration ===
Combat Expanded disables normal Regeneration. Instead player will regenerate half a heart every 0.8 seconds as long as they are out of combat.
 
Players will enter combat when:
 
* Being damaged by a mob, explosions, the {{Stack|effect:Wither}} Wither effect (12 seconds)
* Drowning, Falling, Lava, {{Stack|effect:Poison}} Poison (2.4 seconds)
* If on fire regeneration will happen every 3.6 instead of 0.8 seconds, but will not enter combat
 
Killing an entity will immediately exit combat until damaged again.
 
== Item Modifiers ==
Custom armor and weapons are dropped at 8.5% and 20% respectively, scaling with looting. Any items dropped like this will be prefixed with a special modifier.
 
{{/Weapons}}
 
{{/Armour}}
 
== Mobs ==
As a player stays alive in the world for longer the mobs that spawn around them will grow in strength. Mobs will spawn with higher health, damage, movement speed and with better armor and weapons.
 
Mobs will also receive additional bonusses depending on what biome they spawn in.
{{/Biome Modifiers}}
 
{{/Modifier Effects}}
 
====Spawners====
Mobs spawned from spawners do not benefit from any modifiers. Mobs are considered spawner spawns if they spawn in the air.
 
Blaze, Drowned, Slimes, Magma Cubes, Phantoms, and Guardians will gain modifiers even if spawned from a spawner.
 
====Zombie Changes====
* Baby zombies have -60% Max Health.
* Zombie Leaders are replaced with zombies that have highly increased stats and much better gear than ordinary zombies. In addition Zombie Leaders will be equipped with a shield enchanted with Unbreaking V. All of the equipment has a high chance of being dropped on death.
 
====Phantoms====
Phantoms will no longer spawn from insomnia. Instead they can be found above high mountains, unless a players Home Bed is nearby. Phantoms will take damage upon contact with water.
 
==Advancements==
{| class="wikitable"
!Advancement
!Requirement
|-
|{{Advancement|item=Leather Tunic|title=Hidden Power|desc=Obtain a Modified weapon or piece of armor from a mob}}
|Pick up an item with a Modifier
|-
|{{Advancement|item=Chorus Fruit|title=Vwoops!|bg=fancy|desc=Who thought this was a good idea?}}
|Teleport using a piece of Vorpal armor
|}
 
==Technical Details==
 
====Player Difficulty====
Each player has their own Player Difficulty, which is calculated every 5 minutes or on respawn.
 
<code>Player Difficulty = Playtime * (1 - Death Multiplier) * World Difficulty</code>, where
 
<code>Playtime:</code> goes up by 1 every 5 minutes a player is online, up to 100.
 
<code>Death Multiplier:</code> is calculated on death by: <code>Death Multiplier = Death Multiplier * 0.75 + 0.2</code>, every time difficulty is calculated it is reduced by 0.01 for every 5 minutes since the last death.
 
<code>World Difficulty:</code> is based on world difficulty: 0.3 for easy, 0.4 for medium and 0.5 for hard
 
====Mob Difficulty====
When a mob spawns it will be assigned a Mob Difficulty of its own to modify its stats.
 
<code>Mob Difficulty = Player Difficulty * Difficulty Modifier + Random Offset + Illager Bonus</code>, where


This module adds custom modifiers to armor, weapons, and mobs as well as a ramping difficulty curve the longer you survive.
<code>Player Difficulty:</code> Difficulty taken from the closest player
 
<code>Difficulty Modifier:</code> is calculated based on the environment where the mob spawned:
 
* Start with a random value between -0.1 - 0.1
* If it's raining: +0.2
* If the mob spawned on the surface and it is night time: +0.1 for crescent moon, +0.2 for quarter moon, +0.3 for gibbous moon or +0.4 for a full moon
* If mob spawned underground (Dark): +0.3
* If in Mountainous biomes: +0.2
* If an active Home Bed is within 128 blocks: -0.4
 
<code>Random Offset:</code> a random value between -5 and 5
 
<code>Illager Bonus:</code> applied to Illagers under certain conditions:
 
* Illager patrol leaders: +10
* Illager/Ravager in a raid: +<code>3*(raid wave)</code>
 
A mobs Difficulty is then used to calculate their stats. Each mobs has their own Stat Page, mobs final stats are calculated as follows using those scores:
 
<code>Max Health = ((0.5*score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100)</code>
 
<code>Attack Damage = ((0.15*score) + 0.35*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100) * 0.1</code>, cannot exceed the damage cap


== Features ==
<code>Movement Speed = 0.5*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100)</code>, in percentages
Combat Expanded expands on the games difficulty. Mobs will be given additional stats and gear scaling over time. This gear can be dropped for the player as Unidentified weapons or armor.


=== Mobs ===
<code>Armor = ((0.25*score) + 0.25*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100)</code>


==== General Changes ====
<code>Armor Toughness = ((0.25*score) + 0.75*RAND.BETWEEN(0,score)) * (Mob Difficulty/100)</code>
Mobs can be given ''bonus points'' to some of their stats, these points are then randomized between 0 and their current value based on normal distribution and stat buffs are applied:


* '''Max Health''': each point corresponds with +2 health, capped at +30
==== Mob Modifiers ====
* '''Attack Damage''': each point corresponds with +0.5 damage, capped at +7
If the chance for a modifier is <u>underlined</u> it scales up with Mob Difficulty, the displayed chance is for 100 Mob Difficulty, e.g. an 80% chance at 100 Mob Difficulty would be a 40% chance at 50 Mob Difficulty.  
* '''Movement Speed''': each point corresponds with +2% speed, capped at +30%
* '''Armor''': each point corresponds with +1 armor, capped at +7
* '''Armor Toughness''': each point corresponds with +5 toughness, capped at +35
Mobs will use the Difficulty Score of the nearest player upon spawning, normally capped at 10.
{| class="wikitable mw-collapsible mw-collapsed"
{| class="wikitable mw-collapsible mw-collapsed"
|+General Mob Modifiers
! colspan="4" |General Mob Modifiers
|-
!Mob
!Mob
!Effects
!Base Stats
!Stat Points per
!Stat Page
Difficulty Score
!Additional Effects
!Effects at
|-
Difficulty >=4
|Zombie/Husk/Drowned
!Effects at
| -3 Max Health
-1 Attack Damage


Difficulty >=8
-5% Movement Speed
!Effects at
|'''Max Health:''' 15
'''Attack Damage:''' 45


Difficulty >=11
'''Movement Speed:''' 20
 
'''Armor:''' 4
 
'''Armor Toughness:''' 8
 
'''Damage Cap:''' 9
|<u>33% chance</u> to equip a weapon
 
33% chance to equip armor (4x)
 
<u>15% chance</u> for {{Stack|effect:Speed}} Speed
 
<u>40% chance</u> for +45% Knockback Resistance
 
<u>7.5% chance</u> for "Shielded"
 
* Equip shield in offhand
* +5 Armor
* +50% Armor
* +20 Armor Toughness
* -2 Max Health
* No bonus Max Health
 
<u>5% chance</u> for "Dual Wield"
 
* Equip weapon in offhand
* +4 Attack Damage
* -20% Movement Speed
|-
|-
|Zombie/Husk/Drowned
|Skeleton/Stray
|
| -5 Max Health
|''+1 Max Health''
-20% Movement Speed
''+1 Attack Damage''
|'''Max Health:''' 12
'''Attack Damage:''' 35
 
'''Movement Speed:''' 20
 
'''Armor:''' 6


''+1 Movement Speed''
'''Armor Toughness:''' 4
|''+1 Armor''
''+1 Armor Toughness''


Can spawn with Axes
'''Damage Cap:''' 7.5
|''+2 Attack Damage''
|33% chance to equip armor (4x)
''+1 Movement Speed''


''+2 Armor''
<u>7.5% chance</u> for {{Stack|effect:Instant Damage}}Harming arrows
|Spawn a second Zombie/Husk/Drowned
Double drop rate of worn gear
|-
|-
|Skeleton/Stray
|Spider
| -6 Max Health
-0.5 Attack Damage
 
-6% Movement Speed
|'''Max Health:''' 12
'''Attack Damage:''' 40
 
'''Movement Speed:''' 56
 
'''Armor:''' 4
 
'''Damage Cap:''' 6.5
|
|
|''+1 Max Health''
|''+1 Armor Toughness''
|15% chance for harming tipped arrow
|Enchanted with a random level of power
Double drop rate of worn gear
|-
|-
|Spider/Cave Spider
|Cave Spider
|
| -8 Max Health
|''+1 Max Health''
-1.5 Attack Damage
''+1 Attack Damage''
 
-12% Movement Speed
|'''Max Health:''' 10
'''Attack Damage:''' 40
 
'''Movement Speed:''' 42


''+1 Movement Speed''
'''Damage Cap:''' 5.5
|''+2 Movement Speed''
|
|
|''+6 Movement Speed''
|-
|-
|Creeper
|Creeper
| -5 Max Health
|'''Max Health:''' 12
'''Movement Speed:''' 15
'''Armor:''' 7
|
|
|''+1 Movement Speed''
|''+1 Max Health'' per Difficulty Score above 3
|
|''+4 Armor''
|-
|-
|Magma Cube/Slime
|Slime / Magma Cube
|
| -3 Max Health<ref>Except for Size 0 Slimes / Magma Cubes</ref>
|''+1 Max Health''
|'''Max Health:''' 13
|
 
| +5% chance to grow to size 4
 
| +10% chance to grow to size 4
'''Damage Cap:''' 8
+5% chance to grow to size 5
|<u>35% chance</u> to grow 1 size (up to 4)
 
<u>10% chance</u> to grow 1 size (up to 4)
|-
|-
|Enderman
|Enderman
|If in The End:
| -2 Max Health<ref name=":0">Except in The End</ref>
''+4 Max Health''
-3 Attack Damage


''+4 Attack Damage''
-10% Movement Speed
|'''Max Health:''' 16<ref name=":0" />
'''Attack Damage:''' 65


''+4 Movement Speed''
'''Movement Speed:''' 20
|''+2 Max Health''
''+2 Attack Damage''


''+2 Movement Speed''
'''Armor:''' 9
|''+2 Armor''
 
|''+5 Attack Damage''
'''Damage Cap:''' 14
|''+3 Armor''
|in '''The End:'''
''+8 Movement Speed''
 
* +20% Attack Damage
* +15% Movement Speed
|-
|-
|Phantom
|Phantom
| -50% Max Health if difficulty score <4
| -15 Max Health
|
-1.5 Attack Damage
|'''Max Health:''' 10
'''Attack Damage:''' 45
 
'''Armor:''' 5
 
'''Damage Cap:''' 6
|
|
|''+2 Attack Damage''
5% chance to grow 2 sizes
|Spawns in swarms of 4, of which 2 grow one size
|-
|-
|Wither Skeleton
|Wither Skeleton
|
| -2 Max Health
|''+1 Max Health''
-4% Movement Speed
''+1 Attack Damage''
 
+66% Knockback Resistance
|'''Max Health:''' 16
'''Movement Speed:''' 14
 
'''Armor:''' 8
 
'''Armor Toughness:''' 12


''+1 Movement Speed''
'''Damage Cap:''' 14
|5% chance to spawn with bow and wither tipped arrows
|<u>100% chance</u> to equip Iron or Chainmail armor (4x)
|''+3 Attack Damage''
|''+5 Max Health''
''+3 Attack Damage''


''+2 Movement Speed''
<u>40% chance</u> to equip a bow with {{Stack|effect:Wither}}Wither arrows
|-
|-
|Piglin/Zombified Piglin
|Piglin
|
| -2 Max Health
|''+1 Max Health''
-0.5 Attack Damage
''+1 Attack Damage''
 
-4% Movement Speed
|'''Max Health:''' 16
'''Movement Speed:''' 8


''+1 Movement Speed''
'''Armor:''' 4
|
|''+4 Max Health''
|''+2 Max Health''
''+5 Attack Damage''


''+5 Armor''
'''Armor Toughness:''' 8


''+1 Armor Toughness''
'''Damage Cap:''' 11
|33% chance to equip Gold armor (4x)
|-
|-
|Ghast
|Zombified Piglin
|Does not gain any Stat Points
| -3 Max Health
-2.5 Attack Damage
 
-2% Movement Speed
|'''Max Health:''' 18
'''Attack Damage:''' 55
 
'''Movement Speed:''' 25
 
'''Damage Cap:''' 9
|
|
| +5% chance to spawn another Ghast
| +10% chance to spawn another Ghast
|spawn another Ghast
the chance to spawn another still applies
|-
|-
|Blaze
|Pillager
|<nowiki>-75% Attack Damage if difficulty score <4</nowiki>
| -4 Max Health
-15% Movement Speed
|'''Max Health:''' 10
'''Movement Speed:''' 24
 
'''Armor:''' 14
 
'''Armor Toughness:''' 15
 
'''Damage Cap:''' 3
|If '''Patrol Leader:'''
 
* Piercing Enchantment
 
If i'''n Patrol:'''
 
* '''Movement Speed:''' 34
 
If '''in Raid Wave 4+:'''
 
* '''Max Health:''' 18
* '''Armor:''' 24
 
If '''in Raid Wave 5/6/7/8:'''


This only affects the melee attack
* 20/40/60/80% chance of Piercing Enchantment
|''+1 Armor''
|
|''+5 Armor''
|''+4 Attack Damage''
''+2 Armor Toughness''
|-
|-
|Other
|Vindicator
|
| -4 Max Health
|''+1 Max Health''
-3 Attack Damage
''+1 Attack Damage''
 
-10% Movement Speed
|'''Max Health:''' 15
'''Attack Damage:''' 45
 
'''Movement Speed:''' 30


''+1 Movement Speed''
'''Armor:''' 14
| +2 Armor
|''+2 Armor''
|''+3 Armor''
|}


==== Biome Specific Changes ====
'''Damage Cap:''' 10
Any mobs spawned above light level 0 or in Lush Caves will have effects applied to them based on the biome they spawned in, mobs spawned at light level 0 will be considered to have been spawned in the "Cave" biome
|If '''in Raid Wave 4+:'''
{| class="wikitable mw-collapsible mw-collapsed"
* '''Max Health:''' 30
|+Biome Specific Mob Modifiers
* '''Armor Toughness:''' 10
!Biomes
!Effects on
any mob
!Effects on
Zombies/Husks/Drowned
!Effects on
Skeletons/Stray
!Effects on
Spiders/Cave Spiders
!Effects on
Creepers
!Effects on
Slimes
!Effects on
Endermen
|-
|-
|Cave
|Evoker
|''+3 Max Health''
| -4 Max Health
''+3 Attack Damage''
-10% Movement Speed
|'''Max Health:''' 10
'''Movement Speed:''' 30
 
'''Armor:''' 8


''+3 Movement Speed''
|''+1 Armor Toughness''
+25% chance to spawn reinforcements


15% chance to spawn with an Unidentified Pickaxe
'''Damage Cap:''' 10
|''+2 Movement Speed''
|'''Spider:''' 5% chance on Invisibility
| +1 Blast Radius
|
|
|
|-
|-
|Snowy Plains
|Ravager
| -20 Max Health
-3 Attack Damage
 
-10% Movement Speed
|'''Max Health:''' 70
 
'''Attack Damage:''' 45
 
'''Movement Speed:''' 22


Ice Spikes
'''Armor:''' 10


Snowy Taiga


Snowy Beach
'''Damage Cap:''' 19.5
|
|-
|Hoglin / Zoglin
| -16 Max Health
-14% Movement Speed
|'''Max Health:''' 65
'''Attack Damage:''' 40


Grove
'''Movement Speed:''' 18


Snowy Slopes
'''Armor:''' 10


Jagged Peaks


Frozen Peaks
'''Damage Cap:''' 16
|
|-
|Guardian
| -3 Attack Damage
|'''Attack Damage:''' 60


Frozen River


Frozen Ocean
'''Damage Cap:''' 9
|
|-
|Blaze
| -8 Max Health
-3 Attack Damage
|'''Max Health:''' 13
'''Attack Damage:''' 45


Deep Frozen Ocean
'''Armor:''' 20
|''+4 Max Health''


'''Armor Toughness:''' 10


-15% Movement Speed
|Attacks apply:


* Slowness (0:15) at Difficulty Score of <=3
'''Damage Cap:''' 7.5
* Slowness (0:30) at Difficulty Score of 4 - 8
* Slowness II (0:30) at Difficulty Score of >=9
|'''Stray:''' slowness III arrows
|
|
|
|
|
|-
|-
|Snowy Slopes
|Silverfish / Endermite
| -6 Max Health
-5% Movement Speed
|'''Max Health:''' 3
'''Attack Damage:''' 10


Jagged Peaks
'''Movement Speed:''' 10


Frozen Peaks


Windswept Hills
'''Damage Cap:''' 3
|
|}
{| class="wikitable mw-collapsible mw-collapsed"
! colspan="5" |Biome Specific Mob Modifiers (Overworld)
|-
!Biomes
!Effects on
any mob
!Effects on
Zombies/Husks/Drowned
!Effects on
Skeletons/Stray
!Effects on
Other Mobs
|-
|'''Dark'''<ref>Mobs are considered to have spawned in the "Dark" if they spawn at light level 0, except if they spawned in Lush Caves.</ref>
| +15% Max Health
+25% Armor


Windswept Gravelly Hills
+5% Movement Speed


Windswept Forest
Weapon droprate to 8.5%


Stony Shores
Armor droprate to 4.25%
|
|'''Movement Speed:''' 22
'''Armor Toughness:''' 6
|'''Cave Spider:'''


Meadow
* +15% Movement Speed


Stony Peaks
'''Creeper:'''


Windswept Savanna
* Explosion Radius increased to 4


Eroded Badlands
'''Spider:'''
|''+2 Attack Damage''
|''+2 Armor''
+2 Attack Knockback


40% chance of Knockback enchantment
* <u>10% chance</u> of Invisibility
 
|-
-100% chance to spawn reinforcements
|30% chance of Punch enchantment
|Jump Boost II
|
|
|
|
{| class="mw-collapsible mw-collapsed"
|+'''Burned'''
|-
|-
|Desert
|Desert
Line 284: Line 468:
Wooded Badlands
Wooded Badlands


Eroded Badlands
Eroded Badlands  
|''+3 Movement Speed''
|}
|50% chance of fire aspect enchantment
|<nowiki>+10% Movement Speed</nowiki>
'''Husk:'''


* -65% Max Health
<u>40% chance</u> of Fire Aspect Enchantment
* -25% Attack Damage
* Spawns in swarms of 7-12 Husks
|40% chance of Flame enchantment
|50% chance of Fire Resistance
|25% shorter fuse (22 seconds)
|
|
|-
|Sunflower Plains
Flower Forest


Lush Caves
<u>40% chance</u> of Flame enchantment
|'''Husk:'''
*-65% Max Health
*-25% Attack Damage
*<u>200% chance</u> to spawn extra Husk (4x)
*<u>90% chance</u> to spawn extra Husk (3x)
*<u>45% chance</u> to spawn extra Husk (4x)
|
|
| -25% Max Health
|'''Cave Spider / Spider:'''
Drops a burnable 'spore' on death that respawns


the mob after 8 seconds, respawned mobs only rarely drop another spore
* <u>50% chance</u> of Fire Resistance
|
|'''Lush Caves''': 50% chance to be
replaced with 4 silverfish
|15% chance to be invisible until lit
25% longer fuse (37 seconds)
|15% chance to increase in size, twice
|50% chance to be replaced with a slime
|-
|Swamp
Mangrove Swamp


Jungle
'''Creeper:'''


Bamboo Jungle
* Fuse reduced by 25%
| -25% Attack Damage
|Attacks apply:


* Weakness (0:15) at Difficulty Score of <=3
'''Phantom:'''
* Weakness (0:30) at Difficulty Score of 4 - 8
* Weakness II (0:30) at Difficulty Score of >=9
|Poison II (0:05) and
Weakness (0:05) arrows
|'''Spider:''' spawns 3 cave spiders
'''Cave Spider:''' attacks apply


poison II and hunger instead of poison
* Fire Resistance
|Blindness
* <u>35% chance</u> to grow 1 size
Weakness
|-
 
Nausea
|Applies Poison on landing,
effect radius depends on size
|
|
{| class="mw-collapsible mw-collapsed"
|+'''Deep'''
|-
|-
|Deep Lukewarm Ocean
|Deep Lukewarm Ocean
Line 346: Line 504:
Deep Cold Ocean
Deep Cold Ocean


Deep Frozen Ocean
Deep Frozen Ocean  
|''+1 Armor Toughness''
|}
|'''Drowned''': ''+4 Attack Damage''
| +60% Armor Toughness
|
|'''Drowned''':
 
* +20% Movement Speed
|
|
|
|
|-
|
|
{| class="mw-collapsible mw-collapsed"
|+'''Flowering'''
|-
|Sunflower Plains
Flower Forest
Cherry Grove
Lush Caves
|}
|
|
|Head slot is replaced with a "Zombie Spore" that comes in 3 varieties:
'''Cherry''' in Cherry Groves:
*grants 16 Max Health
*grants 10% Movement Speed
'''Normal''' in other Flowering Biomes (66% chance)
*grants 8 Max Health
*grants -1.5 Attack Damage
'''Flowering''' in other Flowering Biomes (33% chance)
Each Spore also reduces the mobs Max Health by 25%.
Killing a Spore Zombie can drop the Spore which will respawn a new Spore Zombie after 8 seconds.
Drop chance of spores starts at 100%, reduced by 10 for each subsequent respawn.
Setting Spore Zombies on fire destroys the Spore.
|85% chance to be replaced with 3 zombies.
In '''Lush Caves''' only 1 zombie spawns
|'''Enderman:'''
* 50% chance to be replaced with a Slime
'''Creeper:'''
* Invisible until it gets close to a player
* Explosion Radius reduced to 2
'''Phantom:'''
* <u>35% chance</u> to grow 1 size
* <u>50% chance</u> to grow 1 size
'''Slime:'''
* <u>35% chance</u> to grow 1 size (up to 4)
* <u>35% chance</u> to grow 1 size (up to 4)
'''Cave Spider / Spider (in Lush Caves):'''
* Replaced with 4 Silverfish
'''Silverfish (in Lush Caves):'''
* <u>50% chance</u> to spawn a Silverfish when hitting a player
|-
|-
|Warm Ocean
|50% chance of depth strider enchantment
|40% chance to spawn with a Trident
|
|
|
|
|
|
{| class="mw-collapsible mw-collapsed"
|+'''Growth'''
|-
|-
|Snowy Taiga
|Snowy Taiga
Line 375: Line 587:
Dark Forest
Dark Forest


Mangrove Swamp
Mangrove Swamp  
|80% chance of projectile protection enchantment
|}
|<u>80% chance</u> of Projectile Protection Enchantment
|Replaced with 3 Skeletons
| -25% Max Health
| -25% Max Health
-15% Attack Damage
+24% Movement Speed
 
Spawns with melee weapons
|'''Cave Spider / Spider:'''
* Spawn a second (Cave) Spider
* <u>60% chance</u> to spawn a third
 
'''Creeper:'''
 
* +20% Movement Speed
 
'''Slime:'''


Spawns in groups of 4
* Spawn additional small Slimes, 1 per size above 0
|Spawns with melee
|-
weapons
|Spawns another (cave) spider
50% chance to spawn a third
|
|
|Grow 2 sizes
{| class="mw-collapsible mw-collapsed"
Spawn 3 slimes one size smaller
|+'''Mountainous'''
|
|-
|}
|Snowy Slopes
Jagged Peaks
 
Frozen Peaks
 
Windswept Hills
 
Windswept Gravelly Hills
 
Windswept Forest
 
Stony Shores
 
Cherry Grove
 
Meadow
 
Stony Peaks
 
Windswept Savanna
 
Eroded Badlands
|}  
| +25% Armor
 
+50% Armor Toughness


==== Spawners ====
Mob Difficulty +20%
Mobs spawned from spawners do not benefit from any modifiers. Mobs are considered spawner spawns if they spawn in the air.


Blaze, Drowned, Slimes, Magma Cubes, Phantoms, Shulkers, Ghasts, Guardians, and Elder Guardians will gain modifiers even if spawned from a spawner.
<u>40% chance</u> for Knockback Enchantment


=== Items ===
<u>35% chance</u> for Punch Enchantment
|<u>40% chance</u> to spawn a Phantom


==== Obtaining and Identification ====
+1 Attack Knockback
Custom weapons and armor are dropped with the same rate as naturally-spawned equipment at 8.5%, scaling with looting. Any items dropped like this will be prefixed with "Unidentified" and will work identical to their vanilla counterpart.


Unidentified items can be identified to unlock their special effects. Weapons are always identified on their first use damaging any mob or player while armor needs its activation requirement to be fulfilled (armor with the "equipped" requirement is identified immediately).
Max Health Base +6
|
|'''Cave Spider / Spider:'''
* <u>40% chance</u> of {{Stack|effect:Speed}}Speed


On identification a sound will play and the item will restore half of its lost durability, the Unidentified prefix is replaced with the name of the modifier (unless the item was renamed).
'''Creeper:'''


==== Weapons ====
* +40% Knockback Resistance
{| class="wikitable mw-collapsible mw-collapsed"
|+Possible Weapon Modifiers
!Weapon
!Passive Effects
!On-Hit Effects
!Rarity
|-
|-
|Deliberate
| +0.5-2.0 Attack Damage
-0.2-0.5 Attack Speed
|
|
|common
{| class="mw-collapsible mw-collapsed"
|+'''Reef'''
|-
|-
|Swift
|Warm Ocean
| -0.5-2.0 Attack Damage
|}
+0.2-0.5 Attack Speed
|<u>50% chance</u> of depth strider enchantment
|'''Drowned:'''
* +100% Movement Speed
* +10% Armor
* +75% Armor Toughness
* +2 Attack Damage
* <u>45% chance</u> to spawn a Guardian, thrice
* <u>60% chance</u> to spawn a Drowned, twice
* <u>40% chance</u> to spawn with a Trident
|
|
|common
|'''Guardian'''
 
* '''Attack Damage:''' 90
* '''Damage Cap:''' 12
|-
|-
|Light
|<nowiki>-0.5-2.0 Attack Damage</nowiki>
+5-20% Movement Speed
|
|
|common
{| class="mw-collapsible mw-collapsed"
|+'''Snowy'''
!
|-
|-
|Heavy
|Snowy Plains
|<nowiki>+0.5-2.0 Attack Damage</nowiki>
Ice Spikes
 
Snowy Taiga
 
Snowy Beach
 
Grove
 
Snowy Slopes
 
Jagged Peaks
 
Frozen Peaks


-5-20% Movement Speed
Frozen River


Knockback I/II Enchant
Frozen Ocean
|
 
|common
Deep Frozen Ocean
|-
|}
|Flaming
|<nowiki>-15% Movement Speed</nowiki>
|<nowiki>-0.5-2.0 Attack Damage</nowiki>


Fire Aspect III/IV/V Enchant
+15% Max Health
|
|Attacks apply {{Stack|effect:Slowness}} Slowness (0:15)
|common
|'''Stray:'''
|-
|Venomous
|<nowiki>-0.5-2.0 Attack Damage</nowiki>
|Either:
poison I/II (0:08)


poison I (0:30)
* {{Stack|effect:Slowness}} Slowness III (0:30) arrows
|common
|'''Cave Spider / Spider:'''
|-
|Crippling
|<nowiki>-0.2-0.5 Attack Speed</nowiki>
|Slowness I/II/III and
Weakness I (0:04)
|common
|-
|Spectral
|<nowiki>-0.5-2.0 Attack Damage</nowiki>
|Glowing (0:30)
If the target did not have


Glowing: Wither II/III/IV (0:10)
* Attacks apply {{Stack|effect:Slowness}} Slowness (0:15)
|common
|-
|Ascended
|<nowiki>-0.5-2.0 Attack Damage</nowiki>
|Levitation VI/VIII/X (0:01)
|rare
|-
|Resonating
|1 Attack Damage
|Two seconds after the hit:
Target is dealt 4/6/8 damage


ignoring armor and resistances
'''Creeper:'''
|rare
|-
|Chaotic
|<nowiki>-0.2-0.5 Attack Speed</nowiki>


Is randomly enchanted
* Replaced with either a Zombie or a Skeleton
|If weapon is enchanted:
Change enchantments to new


random ones (level 15-40)
'''Phantom:'''
|rare
|-
|Yearning
|<nowiki>+0.5-2.0 Attack Damage</nowiki>
|Apply to wielder:
Saturation (0:01)


Hunger X (0:15)
* Attacks apply {{Stack|effect:Slowness}} Slowness (0:15)
|rare
|-
|Divine
|0.5 Attack Damage


-0.2-0.5 Attack Speed
'''Slime:'''
|Instant Heath I/II/III
|epic
|-
|Demonic
|x1.5 Attack Damage
|Apply to wielder:
Wither (0:01)
|epic
|}


==== Armor ====
* Size +1 (up to 3)
{| class="wikitable mw-collapsible mw-collapsed"
|+Possible Armor Modifiers
!Armour
!Passive Effects
!Activation
!Active Effects
!Rarity
|-
|-
|Scouting
|<nowiki>-0.5-2.0 Attack Damage</nowiki>
|No damage taken for 4 seconds
| +10-25% Movement Speed
|common
|-
|Focused
| -10-25% Attack Speed
|No damage taken for 4 seconds
| +1-4 Attack Damage
|common
|-
|Shielded
|
|
|No damage taken for 4 seconds
{| class="mw-collapsible mw-collapsed"
|Absorption I/II/III, taking any damage
|+'''Toxic'''
fully removes the effect
|common
|-
|-
|Sly
|Swamp
| -1-3 Armor
Mangrove Swamp
|No damage taken for 4 seconds
 
|Invisibility
Jungle
Jump Boost I/II
 
|rare
Bamboo Jungle
|-
|}
|Overwhelming
| -25% Attack Damage
| +2-8 Attack Damage
|Attacks apply {{Stack|effect:Weakness}}Weakness and {{Stack|effect:Hunger}}Hunger II (0:15)
+20-50% Attack Speed
|{{Stack|effect:Hunger}}Hunger II, {{Stack|effect:Poison}} Poison and {{Stack|effect:Weakness}}Weakness (0:05) arrows
|'''Cave Spider:'''
 
* attacks apply {{Stack|effect:Hunger}} Hunger II and {{Stack|effect:Weakness}} Weakness in addition to poison


+10-40% Movement Speed
'''Creeper:'''
|No damage taken for 4 seconds
|Wither II (0:01)
|epic
|-
|Thorny
|Enchanted with Thorns I/II
|Health below 50% of max
|Thorns set to level XIV/XV/XVI/XVII
Has no effect if the armor does not


have the Thorns enchantment
* Leaves a cloud of {{Stack|effect:Weakness}} Weakness II, {{Stack|effect:Blindness}} Blindness, {{Stack|effect:Nausea}} Nausea and  {{Stack|effect:Hunger}}Hunger II
|common
|-
|Berserkers
| -1-3 Armor
|Health below 50% of max
| +1-4 Attack Damage
|common
|-
|Rejuvenating
| -5-20% Movement Speed
|Health below 50% of max
|Regenerate half a heart, cooldown of
2.4/3.2/4.0/4.8 seconds
|common
|-
|Soothing
|
|Health below 50% of max
|Instant Health I/II/II within 1.75/2.25/3 blocks respectively
Players receive one level lower instead


Players within 3 blocks Regeneration I\I (0:04)
'''Slime:'''


Can only occur once per minecraft day
* Attacks apply {{Stack|effect:Poison}} Poison and {{Stack|effect:Nausea}}Nausea (0:15)
|rare
|-
|Dashing
| -5-20% Movement Speed
|Health above 50% of max
|Speed & Hunger ramping from level I to V every 5 seconds
as long as the wearer keeps sprinting


Every additional Dashing piece reduces the 5 seconds
'''Spider:'''


between steps by 50%
* spawn 3 Cave Spiders with -3 Max Health
|common
|}
{| class="wikitable mw-collapsible mw-collapsed"
! colspan="6" |Biome Specific Mob Modifiers (Nether)
!
|-
|-
|Poised
!Biome
!Effect on
Piglin
!Effect on
Zombified Piglin
!Effect on
Skeleton
!Effect on
Magma Cube
!Effect on
Enderman
!Effect on
Blaze
|-
|Nether Wastes
|
|
|Health above 50% of max
|
| +10-25% Attack Speed
|
|common
|
|95% chance to replace with Blaze
| +100% Movement Speed
|-
|-
|Solid
|Soul Sand Valley
| -5-20% Movement Speed
|
|Health above 50% of max
|
| +1-3 Armor
|{{Stack|effect:Fire Resistance}}Fire Resistance
+1 Knockback Resist
|
|common
|90% chance to replace with Wither Skeleton
|
|-
|-
|Vigorous
|Crimson Forest
|'''Max Health:''' 46
|<u>33% chance</u> to spawn with Gold armor (4x)
|
|
|
|
|
|Health above 50% of max
|Mining Fatigue/Poison/Wither immunity
Hunger/Blindness/Nausea/Weakness immunity
|rare
|-
|-
|Custodians
|Warped Forest
|
|
|
|
|Health above 50% of max
|Players except the wearer within 12 blocks have Resistance II
Any damage reduced by this effect (up to 4 per player per 0.8 seconds)
is dealt to the wearer, ignoring armor and resistances
|epic
|-
|Vampiric
| -1-3 Armor
|After killing an entity
|Regenerate half a heart. Can only happen once every 0.8 seconds
Additional Vampiric pieces stack the effect
|common
|-
|Reckless
| -1-3 Armor
|After killing an entity
| +10-25% Attack Speed (0:04)
+5-20% Movement Speed (0:04)
|common
|-
|Chilling
| -10-25% Attack Speed
|After killing an entity
|Freeze mobs within 8 blocks for 1-2 seconds.
Level II effect also applies Wither IV over duration
|common
|-
|Devouring
| +0.01-0.03 Attack Damage
|After killing an entity
|Permanently increase this pieces Passive Effect by 0.01-0.03, up
to 3-6 Attack Damage. Can only happen once every 0.8 seconds
|rare
|-
|Retaliatory
|
|
|Taken damage within 2.4 seconds
|33% chance to spawn another enderman
| +1-4 Attack Damage
+10-25% Attack Speed
|common
|-
|Guarding
| -5-20% Movement Speed
+1 Knockback Resist
|Taken damage within 2.4 seconds
| +1-3 Armor
|common
|-
|Stalling
|
|
|On taking damage
|Resistance I/II/III (0:02) to all entities within 2 blocks
|common
|-
|Reactive
| -1-3 Armor
|On taking damage
|Absorption I/II/III (0:03), additional Reactive pieces stack the effects level
Effect does not trigger when taking damage to yellow Absorption hearts
|rare
|-
|Vorpal
|<nowiki>+1 Knockback Resist</nowiki>
|On taking damage
|Teleport to a random location within 16 blocks
|epic
|-
|-
|Expelling
|Basalt Deltas
|
|
|On taking damage
|Clear all effects and store them in a lingering potion that is dropped at
the wearers feet, has a cooldown of 1 minute per Expelling piece
|epic
|-
|Lunar
|
|
|Night-time
|Depending on the moon phase add 0/1/2.5/5/10% to
* Attack Damage
* Attack Speed
* Movement Speed
* Armor
Full moon grants the highest level of effect, new moon the lowest
|common
|-
|Gloomy
|<nowiki>-5-20% Movement Speed</nowiki>
|Night-time
|Slowness I/II/III (0:02) to entities except the wearer within 6 blocks
|common
|-
|Nocturnal
|
|
|Night-time
|Size +1 (up to 3)
| +1-4 Attack Damage
+15% Attack Damage
+5-20% Movement Speed
|common
|-
|Umbral
| -1-3 Armor
|Night-time
|Resistance IV as long as the wearer has hunger haunches
Taking damage applies Hunger C (0:01)
|rare
|-
|Canine
|<nowiki>-1-4 Attack Damage</nowiki>
|Equipped
|Spawn an invulnerable wolf that deals 4 damage to aid the wearer.
Commanding the wolf to sit will cause it to lose aggro
 
Feeding the wolf will grant it strength for 60 seconds
 
Additional Canine pieces will spawn more wolves
 
if the wolf is named it will drop its nametag on despawning
|common
|-
|Bolstering
|<nowiki>-3/6 Attack Damage</nowiki>
|Equipped
|Strength I/II (0:02) to players except the wearer within 5 blocks
|common
|-
|Radiant
|
|
|Equipped
|A constant light will follow the wearer
Crouching will grant the Glowing effect and will pulse a light at the wearer
|common
|-
|Merchants
|
|
|Equipped
|Spawn a Wandering Trader if it is daytime, this effect can only occur
once per minecraft day
|rare
|-
|Challengers
|Enchanted with Curse of Vanishing
|Equipped
|Raise the wearers difficulty score by 1, this can exceed the normal cap
of 10. Additional Challengers pieces stack the effect
|epic
|}
|}


=== Advancements ===
==Learn More and Download==
{{Download|url=https://gm4.co/modules/combat-expanded}}
 
==History==
{| class="wikitable"
{| class="wikitable"
!Advancement
!Version
!Requirement
!Date
!Change
|-
|-
|{{Advancement|item=minecraft:leather_chestplate|title=Hidden Power|desc=Identify a weapon or piece of armor looted from a mob}}
|1.19
|Identify a weapon or piece of Unidentified armor
|22 Aug 2022
|-
|Released Combat Expanded
|{{Advancement|item=minecraft:clock|title=True Survivor|desc=Stay alive for 10 days in a row}}
|Survive for over 9 full minecraft days (3 hours)
|-
|{{Advancement|item=minecraft:iron_chestplate|title=Full Potential|desc=Wear a full set of identified armor and a weapon to go with it}}
|Wear an Identified armor piece in each slot and hold
an Identified weapon in your mainhand (the armor does
 
not have to be active)
|-
|-
|{{Advancement|item=minecraft:clock|title=Give Me More!|bg=challenge|desc=When tough is not good enough|enchanted=true}}
|1.20
|Wear a piece of Challenger armor
|23 Sep 2023
|Updated for 1.20
Module is no longer experimental
|-
|-
|{{Advancement|item=minecraft:shield|title=Sentinel|desc=Give your life defending your allies}}
|1.20.4
|Die from self-damage from the Custodians armor
|25 Jan 2024
|Updated for 1.20.4
Introduced the Difficulty Update
|}
|}
==Previous Versions==


== Technical Details ==
=== MC 1.20.2 Version ===
 
In the 1.20 version Difficulty was calculated in a much simpler way, ranging from 1-10, going up by one for every Minecraft day a player survived.
==== Difficulty Calculation ====
Each player has their own Difficulty Score, based on the minecraft days they have spent in the world in total (D<small>t</small>) and the minecraft days they have spent since their last death (D<small>a</small>). Both of these values are capped at 10.


The formula for the Difficulty Score depends on the world difficulty.
The 1.20.4 Difficulty Update reworked almost all of how mob stats were calculated to provide a smoother and slower increase in difficulty while making it easier to balance.


Easyː <code>ROUND((D<small>t</small>*D<small>s</small>-4)/14)</code>, Difficulty Score is capped at 7
Unidentified items were also removed after this version, instead items are "identified" as soon as they drop..


Normalː <code>ROUND((D<small>t</small>*D<small>s</small>-2)/13)</code>, Difficulty Score is capped at 8
=== MC 1.19 Version ===
Many Modifiers have been significantly changed or completely replaced since the original 1.19 version. As the 1.19 version of the module was an experimental version there is no easy upgrade path to 1.20.


Hardː <code>ROUND((D<small>t</small>*D<small>s</small>)/10)</code>, Difficulty Score is capped at 10
The Focused, Berserkers, Poised, Reckless, Guarding, Merchants armor and Deliberate, Light, Ascended weapon Modifiers were removed in the 1.20 update, replaced by Fluxed, Poisonous, Fractal, Archery, Totemic, Equestrian for armor and Giant and Chiming for weapons.


== Learn More and Download ==
{{Notes}}
{{Download|url=https://gm4.co/modules/combat-expanded}}


== History ==
<references />
{| class="wikitable"
!Version
!Date
!Change
|-
|1.19
|22 Aug 2022
|Released Combat Expanded
|}

Latest revision as of 17:35, 20 March 2024

Combat Expanded

Module TypeStand Alone
Created byThanathor
Compatible MC Versions1.19.2, 1.20+

This module adds custom modifiers to armor, weapons, and mobs as well as a ramping difficulty curve the longer you survive.

Features

Combat Expanded expands on the game's difficulty. Mobs will be given additional stats and gear scaling over time. This gear can be dropped for the player with special modifiers that alter the players stats and abilities.

Home Bed

Players can designate a bed as a "Home Bed" by sleeping in it. Only the last bed slept in by any player can be a Home Bed. While a player is online their Home Bed serves as a beacon that lowers difficulty in an area of 128 blocks around it. Only one Home Bed can affect an area at a time.

Natural Regeneration

Combat Expanded disables normal Regeneration. Instead player will regenerate half a heart every 0.8 seconds as long as they are out of combat.

Players will enter combat when:

  • Being damaged by a mob, explosions, the Wither effect (12 seconds)
  • Drowning, Falling, Lava, Poison (2.4 seconds)
  • If on fire regeneration will happen every 3.6 instead of 0.8 seconds, but will not enter combat

Killing an entity will immediately exit combat until damaged again.

Item Modifiers

Custom armor and weapons are dropped at 8.5% and 20% respectively, scaling with looting. Any items dropped like this will be prefixed with a special modifier.

Weapons

Possible Weapon Modifiers

Weapon

Passive Effects On-Hit Effects Rarity Commonly found in
Light -0.5-2.0 Attack Damage

+0.6-0.9 Attack Speed

common Burned

Dark

Heavy +0.5-2.0 Attack Damage

-0.2-0.5 Attack Speed

Knockback II/III Enchant

common Mountainous

Dark

Flaming -0.5-2.0 Attack Damage

Fire Aspect III/IV/V Enchant

common Burned

Dark

Nether

Twofold -6-7.5 Attack Damage

+100% Attack Damage

common Nether
Giant -0.6-0.9 Attack Speed Deals damage dealt to all entities within 4.5 blocks common Snowy

Deep / Reef

Venomous -0.5-2.0 Attack Damage Apply one of:
  • Poison (0:08)
  • Poison (0:30)
  • Poison II (0:08)
common Toxic

Deep / Reef

Crippling -0.2-0.5 Attack Speed Apply Slowness I/II/III (0:04) and one of:
  • Weakness (0:04)
  • Blindness (0:04)
  • Hunger III (0:04)
  • Wither II (0:04)
common Flowering

Toxic

Piercing -0.5-2.0 Attack Damage Reduce Armor by 2/4/6 for 10 seconds, hitting an

affected target again stacks the effect and refreshes the duration

common Flowering

Growth

Resonating -6-7.5 Attack Damage Deal 9/12/16 additional damage that ignores armor and resistances

2 seconds after the hit. This effect cannot stack.

rare Snowy

Toxic

Swift -0.6-0.9 Attack Speed +0.1/0.2/0.3 Attack Speed on the sword for 6 seconds, the

effect will stack up to 4 Attack Speed on repeated use.

rare Burned

Growth

Charged -6-7.5 Attack Damage Apply 2 stacks of "Charge". Stacks will fall off every 0.5 seconds

8 seconds after the last one was applied.

Applying a "Charge" to a target that already has 6 stacks will strike

them with lightning after a delay. The struck target takes 42 extra

lightning damage (16 for players), entities within 2.5 blocks take half

of the extra damage

rare Mountainous

Deep / Reef

Armor

Possible Armor Modifiers
Armour Passive Effects Activation Active Effects Rarity Commonly Found in
Scouting Natural Regeneration Active +10-25% Movement Speed common Snowy

Burned

Shielded Natural Regeneration Active

Absorption I/II/III, additional pieces add their level to the total

common Mountainous

Deep / Reef

Dark

On taking damage Lose Absorption
Sly Natural Regeneration Active Invisibility while sneaking.

When no longer sneaking gain +25/50/75% Attack Speed for 4 seconds

common Toxic

Growth

Focused Natural Regeneration Active +0.5-2 Attack Damage

Mobs within 24 blocks have Glowing

common Mountainous

Deep / Reef

Nether

Taken damage within 4 seconds -0.5-1.5 Attack Damage
Reactive -1-3 Armor On taking damage Absorption I/II/III/IV (0:30), additional Reactive pieces stack the effects level

Effect does not trigger when taking damage to yellow Absorption hearts and

cannot trigger again during the 30 seconds duration

rare Mountainous

Dark

Coated

-1-3 Armor On taking damage Apply one of:
  • Poison (0:06)
  • Weakness (0:10)
  • Instant Health

to the attacker. Additional pieces will add one level of their respective effect.

common Flowering

Toxic

Burning On taking damage Apply one stack of "Burn" for 10 seconds, up to 8 stacks.

Each stack deals 0.25 fire damage to mobs within 5.25 blocks every 0.5 seconds.

At 8 stacks also sets affected entities (except players) on fire and grants Fire Resistance.

common Burned

Toxic

Nether

After killing an entity

Rejuvenating

-1-4 Armor On taking damage Store 10/20/30/40% of damage taken common Snowy

Dark

Nether

Natural Regeneration Active Restore the stored health
Sparking On taking damage Apply a stack of "Charge". Stacks will fall off every 0.5 seconds

8 seconds after the last one was applied.

Applying a "Charge" to a target that already has 6 stacks will strike

them with lightning after a delay. The struck target takes 42 extra

lightning damage (16 for players), entities within 2.5 blocks take half

of the extra damage

common Mountainous
Reckless After killing an entity + 0.5 Attack Damage, -1 Armor for 15 seconds

Effect stacks until the armor piece grants 0 armor

rare Burned

Growth

Vampiric

-1-3 Armor After killing an entity Restore a heart common Toxic

Deep / Reef

Dark

Totemic After killing an entity Call a totem that gives players within 18 blocks one of the following effects:

Regeneration, Resistance, Speed, Strength

Effects last 6 seconds, reapplied to players that remain in the totems range.

Killing an entity within a totems range will add the effect to the totem instead,

or if the totem already has that effect will apply a level II version of the

effect for 9 seconds.

Totems vanish when all players leave its range

rare Mountainous

Toxic

Draining After killing an entity +1 Max Health (Capped at +6/8/10) common Burned

Flowering

Growth

On taking damage -1 Max Health
Soothing Health at/below 50% of max Instant Health I/II/III within 2.75/4.5/6.25 blocks respectively

Players receive one level lower instead

Players within 6.5 blocks gain Regeneration V (0:02)

Once triggered needs to be recharged by killing 15-30 mobs

rare Flowering

Dark

Nether

Berserkers Health at/below 50% of max +0.5-2 Attack Damage

+10-25% Attack Speed

+5-20% Movement Speed

+1 Knockback Resistance

common Burned

Flowering

Growth

Fluxed Positive and negative

values are the same

Health at/below 50% of max -0.5-2 Attack Damage, +1-3 Armor common Flowering

Nether

Health above 50% of max +0.5-2 Attack Damage, -1-3 Armor
Vigorous Health at/below 50% of max Mining Fatigue /Poison /Weakness immunity, and

Hunger /Blindness /Nausea /Wither immunity

rare Snowy

Toxic

Sustaining Health at/below 50% of max Regeneration Timer charges 3x faster (stacks with more pieces)

Regeneration happens every 0.4 seconds

common Snowy

Growth

Fractal Resistance III Health above 50% of max Health gets set to half of Max Health

Immunity

common Flowering

Deep / Reef

Growth

Archery -10-25% Attack Speed Equipped Shooting an arrow will instead spawn arrows equal to the 2 * the combined level

of all Archery armour pieces. Multishot arrows will spawn half that each.

Extra arrows copy the main arrows stats, with a slightly randomized trajectory

and cannot be picked up.

common Snowy

Mountainous

Burned

Canine -10-25% Attack Speed Equipped Spawn an invulnerable wolf that deals 4 damage to aid the wearer.

Commanding the wolf to sit will cause it to lose aggro

Feeding the wolf will grant it strength for 60 seconds

Additional Canine pieces will spawn more wolves

if the wolf is named it will drop its nametag on despawning

rare Snowy

Growth

Radiant

Equipped A constant floating light will follow the wearer.

Crouching will cause the light to Glow and pulse with flashes of light.

common Mountainous

Burned

Dark

Equestrian Equipped Mounts have Speed I/II/III and one of:
  • Resistance II
  • Jump Boost II
  • Fire Resistance
  • Regeneration

Level of Speed stacks like enchantments, so two pieces with level III

will result in level IV

common Flowering

Growth

Dashing -5-20% Movement Speed Equipped Speed & Hunger ramping from level I to V every 4 seconds as

long as the wearer keeps sprinting. Swimming keeps the current speed

and hunger but doesn't ramp.

Every additional Dashing piece reduces the time between levels by 50%

common Burned

Toxic

Hearty Armor set to 0 Equipped + Max Health equal to the armor of this piece common Snowy

Toxic

Deep / Reef

Lightweight -1-3 Armor Equipped + 1.5 / 1.75 / 2 / 2.25% Movement Speed & Attack Speed for every point of armor below 20 common Flowering

Growth

Psychic -10-25% Attack Speed Equipped A sword will circle around you at 3.5 blocks distance, crouching will cause the

sword to close in and spin faster.

The material and damage of the sword is dependent on the armour material:

  • Leather = Wooden Sword - 2 damage
  • Chainmail = Stone Sword - 3 damage
  • Iron / Gold = Iron / Gold Sword - 4 damage
  • Diamond / Netherite = Diamond / Netherite Sword - 5 damage

Dealing damage with a sword will reduce the armors durability by 1 (affected by unbreaking)

rare Burned

Deep / Reef

Nether

Wild Magic On taking damage Apply a random potion effect with a random duration to self.
Wild Magic Table (Roll d100)
Roll Effect Possible Levels Possible Duration
1 Instant Damage 1 - 3 -
2 Blindness 1 6 - 25s
3 Poison 1 - 3 6 - 25s
4 Wither 1 - 3 6 - 20s
5-6 Darkness 1 15 - 45s
7-8 Weakness 1 - 5 15 - 45s
9-10 Slow Falling 1 15 - 60s
11-12 Levitation 1 - 10 1 - 5s
17-22 Slowness 1 - 5 15 - 60s
23-27 Nausea 1 15 - 45s
28-32 Mining Fatigue 1 - 5 15 - 45s
33-37 Hunger 1 - 10 15 - 60s
38-47 Water Breathing 1 60 - 180s
48-57 Night Vision 1 45 - 180s
58-65 Fire Resistance 1 60 - 90s
66-70 Glowing 1 15 - 90s
71-74 Dolphins Grace 1 - 10 45 - 180s
75-78 Invisibility 1 15 - 120s
79-82 Jump Boost 1 - 10 15 - 90s
83-86 Conduit Power 1 15 - 90s
87-88 Speed 1 - 10 60 - 180s
89-90 Saturation 1 - 2 5 - 20s
91-92 Resistance 1 - 5 15 - 60s
93-94 Regeneration 1 - 5 15 - 30s
95-96 Health Boost 1 - 5 45 - 120s
97 Strength 1 - 2 45 - 90s
98 Absorption 1 - 5 45 - 90s
99 Haste 1 - 4 45 - 120s
100 Instant Health 1 - 5 -
epic Mushroom Fields
Vorpal +1 Knockback Resist On taking damage Teleport to a random location within 8 blocks. epic The End
Unlinked Linked Only works after the armour piece has been renamed.

Link to any other player wearing an Unlinked armour piece that has the same name.

Health of all players in a link will always be the same.

Max Health will be set to the average between linked players.

epic Deep Dark

Mobs

As a player stays alive in the world for longer the mobs that spawn around them will grow in strength. Mobs will spawn with higher health, damage, movement speed and with better armor and weapons.

Mobs will also receive additional bonusses depending on what biome they spawn in.

Biome Modifiers
Biome Modifier Added Difficulty
Snowy Plains Snowy Low
Ice Spikes Snowy Low
Snowy Taiga Growth Snowy Medium
Snowy Beach Snowy Low
Grove Growth Snowy Medium
Snowy Slopes Mountainous Snowy Medium
Jagged Peaks Mountainous Snowy Medium
Frozen Peaks Mountainous Snowy Medium
Windswept Hills Mountainous Low
Windswept Gravelly Hills Mountainous Low
Windswept Forest Mountainous Low
Taiga Growth Low
Old Growth Pine Taiga Growth Low
Old Growth Spruce Taiga Growth Low
Stony Shore Mountainous Low
Plains None
Sunflower Plains Flowering Medium
Forest None
Flower Forest Flowering Medium
Birch Forest None
Old Growth Birch Forest None
Dark Forest Growth Low
Swamp Toxic High
Mangrove Swamp Toxic Growth Very High
Jungle Toxic High
Sparse Jungle None

Bamboo Jungle

Toxic High
Beach None
Mushroom Fields
Cherry Grove Flowering Mountainous High
Meadow Mountainous Low
Stony Peaks Mountainous Low
Desert Burned Medium
Savanna Burned Medium
Savanna Plateau Burned Medium
Windswept Savanna Burned Mountainous High
Badlands Burned Medium
Wooded Badlands Burned Medium
Eroded Badlands Burned Mountainous High
River None
Frozen River Snowy Low
Warm Ocean Reef High
Lukewarm Ocean None
Deep Lukewarm Ocean Deep Low
Ocean None
Deep Ocean Deep Low
Cold Ocean None
Deep Cold Ocean Deep Low
Frozen Ocean Snowy Low
Deep Frozen Ocean Deep Snowy Low
Dripstone Caves None
Lush Caves Flowering Medium
Deep Dark
The Void
Modifier Effects
Modifier Effects
Dark
[1]
Mobs are stronger.

You'll find more Zombies here.

Creepers have a higher blast radius.

Weapons and Armor have a reduced droprate.

Burned
Mobs are faster.

Husks are weaker but spawn in large swarms.

Creeper will explode faster.

Higher chance of Fire Aspect and Flame enchantments.

Deep
Drowned are more powerful.
Flowering

Zombies have lower health but respawn when killed.

Skeletons are often replaced with Zombies.

Creepers are Invisible but with a lower blast radius.

Slimes are larger and spawn more often.

Growth
Spiders will spawn in groups.

Skeletons will spawn more often and use melee weapons.

More Slimes will spawn.

Higher chance of Projectile Protection enchantment.

Mountainous
Mobs are stronger.

Phantoms will spawn.

Spiders can spawn with Speed.

Higher chance of Knockback and Punch enchantments.

Reef
Drowned are much more powerful and spawn with tridents more often.

Drowned will spawn in groups with Guardians.

Snowy

Mobs are slower but healthier.

Most attacks will apply Slowness.

Toxic
Mobs are weaker but apply Weakness, Hunger and Poison.

Cave Spiders will spawn in groups.

Spawners

Mobs spawned from spawners do not benefit from any modifiers. Mobs are considered spawner spawns if they spawn in the air.

Blaze, Drowned, Slimes, Magma Cubes, Phantoms, and Guardians will gain modifiers even if spawned from a spawner.

Zombie Changes

  • Baby zombies have -60% Max Health.
  • Zombie Leaders are replaced with zombies that have highly increased stats and much better gear than ordinary zombies. In addition Zombie Leaders will be equipped with a shield enchanted with Unbreaking V. All of the equipment has a high chance of being dropped on death.

Phantoms

Phantoms will no longer spawn from insomnia. Instead they can be found above high mountains, unless a players Home Bed is nearby. Phantoms will take damage upon contact with water.

Advancements

Advancement Requirement
Hidden Power
Obtain a Modified weapon or piece of armor from a mob
Pick up an item with a Modifier
Vwoops!
Who thought this was a good idea?
Teleport using a piece of Vorpal armor

Technical Details

Player Difficulty

Each player has their own Player Difficulty, which is calculated every 5 minutes or on respawn.

Player Difficulty = Playtime * (1 - Death Multiplier) * World Difficulty, where

Playtime: goes up by 1 every 5 minutes a player is online, up to 100.

Death Multiplier: is calculated on death by: Death Multiplier = Death Multiplier * 0.75 + 0.2, every time difficulty is calculated it is reduced by 0.01 for every 5 minutes since the last death.

World Difficulty: is based on world difficulty: 0.3 for easy, 0.4 for medium and 0.5 for hard

Mob Difficulty

When a mob spawns it will be assigned a Mob Difficulty of its own to modify its stats.

Mob Difficulty = Player Difficulty * Difficulty Modifier + Random Offset + Illager Bonus, where

Player Difficulty: Difficulty taken from the closest player

Difficulty Modifier: is calculated based on the environment where the mob spawned:

  • Start with a random value between -0.1 - 0.1
  • If it's raining: +0.2
  • If the mob spawned on the surface and it is night time: +0.1 for crescent moon, +0.2 for quarter moon, +0.3 for gibbous moon or +0.4 for a full moon
  • If mob spawned underground (Dark): +0.3
  • If in Mountainous biomes: +0.2
  • If an active Home Bed is within 128 blocks: -0.4

Random Offset: a random value between -5 and 5

Illager Bonus: applied to Illagers under certain conditions:

  • Illager patrol leaders: +10
  • Illager/Ravager in a raid: +3*(raid wave)

A mobs Difficulty is then used to calculate their stats. Each mobs has their own Stat Page, mobs final stats are calculated as follows using those scores:

Max Health = ((0.5*score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100)

Attack Damage = ((0.15*score) + 0.35*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100) * 0.1, cannot exceed the damage cap

Movement Speed = 0.5*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100), in percentages

Armor = ((0.25*score) + 0.25*RAND.BETWEEN(0,score) + BINOM.DIST(n=0.5*score, p=0.5)) * (Mob Difficulty/100)

Armor Toughness = ((0.25*score) + 0.75*RAND.BETWEEN(0,score)) * (Mob Difficulty/100)

Mob Modifiers

If the chance for a modifier is underlined it scales up with Mob Difficulty, the displayed chance is for 100 Mob Difficulty, e.g. an 80% chance at 100 Mob Difficulty would be a 40% chance at 50 Mob Difficulty.

General Mob Modifiers
Mob Base Stats Stat Page Additional Effects
Zombie/Husk/Drowned -3 Max Health

-1 Attack Damage

-5% Movement Speed

Max Health: 15

Attack Damage: 45

Movement Speed: 20

Armor: 4

Armor Toughness: 8

Damage Cap: 9

33% chance to equip a weapon

33% chance to equip armor (4x)

15% chance for Speed

40% chance for +45% Knockback Resistance

7.5% chance for "Shielded"

  • Equip shield in offhand
  • +5 Armor
  • +50% Armor
  • +20 Armor Toughness
  • -2 Max Health
  • No bonus Max Health

5% chance for "Dual Wield"

  • Equip weapon in offhand
  • +4 Attack Damage
  • -20% Movement Speed
Skeleton/Stray -5 Max Health

-20% Movement Speed

Max Health: 12

Attack Damage: 35

Movement Speed: 20

Armor: 6

Armor Toughness: 4

Damage Cap: 7.5

33% chance to equip armor (4x)

7.5% chance for Harming arrows

Spider -6 Max Health

-0.5 Attack Damage

-6% Movement Speed

Max Health: 12

Attack Damage: 40

Movement Speed: 56

Armor: 4

Damage Cap: 6.5

Cave Spider -8 Max Health

-1.5 Attack Damage

-12% Movement Speed

Max Health: 10

Attack Damage: 40

Movement Speed: 42

Damage Cap: 5.5

Creeper -5 Max Health Max Health: 12

Movement Speed: 15

Armor: 7

Slime / Magma Cube -3 Max Health[2] Max Health: 13


Damage Cap: 8

35% chance to grow 1 size (up to 4)

10% chance to grow 1 size (up to 4)

Enderman -2 Max Health[3]

-3 Attack Damage

-10% Movement Speed

Max Health: 16[3]

Attack Damage: 65

Movement Speed: 20

Armor: 9

Damage Cap: 14

in The End:
  • +20% Attack Damage
  • +15% Movement Speed
Phantom -15 Max Health

-1.5 Attack Damage

Max Health: 10

Attack Damage: 45

Armor: 5

Damage Cap: 6

Wither Skeleton -2 Max Health

-4% Movement Speed

+66% Knockback Resistance

Max Health: 16

Movement Speed: 14

Armor: 8

Armor Toughness: 12

Damage Cap: 14

100% chance to equip Iron or Chainmail armor (4x)

40% chance to equip a bow with Wither arrows

Piglin -2 Max Health

-0.5 Attack Damage

-4% Movement Speed

Max Health: 16

Movement Speed: 8

Armor: 4

Armor Toughness: 8

Damage Cap: 11

33% chance to equip Gold armor (4x)
Zombified Piglin -3 Max Health

-2.5 Attack Damage

-2% Movement Speed

Max Health: 18

Attack Damage: 55

Movement Speed: 25

Damage Cap: 9

Pillager -4 Max Health

-15% Movement Speed

Max Health: 10

Movement Speed: 24

Armor: 14

Armor Toughness: 15

Damage Cap: 3

If Patrol Leader:
  • Piercing Enchantment

If in Patrol:

  • Movement Speed: 34

If in Raid Wave 4+:

  • Max Health: 18
  • Armor: 24

If in Raid Wave 5/6/7/8:

  • 20/40/60/80% chance of Piercing Enchantment
Vindicator -4 Max Health

-3 Attack Damage

-10% Movement Speed

Max Health: 15

Attack Damage: 45

Movement Speed: 30

Armor: 14

Damage Cap: 10

If in Raid Wave 4+:
  • Max Health: 30
  • Armor Toughness: 10
Evoker -4 Max Health

-10% Movement Speed

Max Health: 10

Movement Speed: 30

Armor: 8


Damage Cap: 10

Ravager -20 Max Health

-3 Attack Damage

-10% Movement Speed

Max Health: 70

Attack Damage: 45

Movement Speed: 22

Armor: 10


Damage Cap: 19.5

Hoglin / Zoglin -16 Max Health

-14% Movement Speed

Max Health: 65

Attack Damage: 40

Movement Speed: 18

Armor: 10


Damage Cap: 16

Guardian -3 Attack Damage Attack Damage: 60


Damage Cap: 9

Blaze -8 Max Health

-3 Attack Damage

Max Health: 13

Attack Damage: 45

Armor: 20

Armor Toughness: 10


Damage Cap: 7.5

Silverfish / Endermite -6 Max Health

-5% Movement Speed

Max Health: 3

Attack Damage: 10

Movement Speed: 10


Damage Cap: 3

Biome Specific Mob Modifiers (Overworld)
Biomes Effects on

any mob

Effects on

Zombies/Husks/Drowned

Effects on

Skeletons/Stray

Effects on

Other Mobs

Dark[4] +15% Max Health

+25% Armor

+5% Movement Speed

Weapon droprate to 8.5%

Armor droprate to 4.25%

Movement Speed: 22

Armor Toughness: 6

Cave Spider:
  • +15% Movement Speed

Creeper:

  • Explosion Radius increased to 4

Spider:

  • 10% chance of Invisibility
Burned
Desert

Savanna

Savanna Plateau

Windswept Savanna

Badlands

Wooded Badlands

Eroded Badlands

+10% Movement Speed

40% chance of Fire Aspect Enchantment

40% chance of Flame enchantment

Husk:
  • -65% Max Health
  • -25% Attack Damage
  • 200% chance to spawn extra Husk (4x)
  • 90% chance to spawn extra Husk (3x)
  • 45% chance to spawn extra Husk (4x)
Cave Spider / Spider:
  • 50% chance of Fire Resistance

Creeper:

  • Fuse reduced by 25%

Phantom:

  • Fire Resistance
  • 35% chance to grow 1 size
Deep
Deep Lukewarm Ocean

Deep Ocean

Deep Cold Ocean

Deep Frozen Ocean

+60% Armor Toughness Drowned:
  • +20% Movement Speed
Flowering
Sunflower Plains

Flower Forest

Cherry Grove

Lush Caves

Head slot is replaced with a "Zombie Spore" that comes in 3 varieties:

Cherry in Cherry Groves:

  • grants 16 Max Health
  • grants 10% Movement Speed

Normal in other Flowering Biomes (66% chance)

  • grants 8 Max Health
  • grants -1.5 Attack Damage

Flowering in other Flowering Biomes (33% chance)

Each Spore also reduces the mobs Max Health by 25%.

Killing a Spore Zombie can drop the Spore which will respawn a new Spore Zombie after 8 seconds.

Drop chance of spores starts at 100%, reduced by 10 for each subsequent respawn.

Setting Spore Zombies on fire destroys the Spore.

85% chance to be replaced with 3 zombies.

In Lush Caves only 1 zombie spawns

Enderman:
  • 50% chance to be replaced with a Slime

Creeper:

  • Invisible until it gets close to a player
  • Explosion Radius reduced to 2

Phantom:

  • 35% chance to grow 1 size
  • 50% chance to grow 1 size

Slime:

  • 35% chance to grow 1 size (up to 4)
  • 35% chance to grow 1 size (up to 4)

Cave Spider / Spider (in Lush Caves):

  • Replaced with 4 Silverfish

Silverfish (in Lush Caves):

  • 50% chance to spawn a Silverfish when hitting a player
Growth
Snowy Taiga

Grove

Taiga

Old Growth Pine Taiga

Old Growth Spruce Taiga

Dark Forest

Mangrove Swamp

80% chance of Projectile Protection Enchantment Replaced with 3 Skeletons -25% Max Health

+24% Movement Speed

Spawns with melee weapons

Cave Spider / Spider:
  • Spawn a second (Cave) Spider
  • 60% chance to spawn a third

Creeper:

  • +20% Movement Speed

Slime:

  • Spawn additional small Slimes, 1 per size above 0
Mountainous
Snowy Slopes

Jagged Peaks

Frozen Peaks

Windswept Hills

Windswept Gravelly Hills

Windswept Forest

Stony Shores

Cherry Grove

Meadow

Stony Peaks

Windswept Savanna

Eroded Badlands

+25% Armor

+50% Armor Toughness

Mob Difficulty +20%

40% chance for Knockback Enchantment

35% chance for Punch Enchantment

40% chance to spawn a Phantom

+1 Attack Knockback

Max Health Base +6

Cave Spider / Spider:
  • 40% chance of Speed

Creeper:

  • +40% Knockback Resistance
Reef
Warm Ocean
50% chance of depth strider enchantment Drowned:
  • +100% Movement Speed
  • +10% Armor
  • +75% Armor Toughness
  • +2 Attack Damage
  • 45% chance to spawn a Guardian, thrice
  • 60% chance to spawn a Drowned, twice
  • 40% chance to spawn with a Trident
Guardian
  • Attack Damage: 90
  • Damage Cap: 12
Snowy
Snowy Plains

Ice Spikes

Snowy Taiga

Snowy Beach

Grove

Snowy Slopes

Jagged Peaks

Frozen Peaks

Frozen River

Frozen Ocean

Deep Frozen Ocean

-15% Movement Speed

+15% Max Health

Attacks apply Slowness (0:15) Stray:
  • Slowness III (0:30) arrows
Cave Spider / Spider:
  • Attacks apply Slowness (0:15)

Creeper:

  • Replaced with either a Zombie or a Skeleton

Phantom:

  • Attacks apply Slowness (0:15)

Slime:

  • Size +1 (up to 3)
Toxic
Swamp

Mangrove Swamp

Jungle

Bamboo Jungle

-25% Attack Damage Attacks apply Weakness and Hunger II (0:15) Hunger II, Poison and Weakness (0:05) arrows Cave Spider:
  • attacks apply Hunger II and Weakness in addition to poison

Creeper:

  • Leaves a cloud of Weakness II, Blindness, Nausea and Hunger II

Slime:

  • Attacks apply Poison and Nausea (0:15)

Spider:

  • spawn 3 Cave Spiders with -3 Max Health
Biome Specific Mob Modifiers (Nether)
Biome Effect on

Piglin

Effect on

Zombified Piglin

Effect on

Skeleton

Effect on

Magma Cube

Effect on

Enderman

Effect on

Blaze

Nether Wastes 95% chance to replace with Blaze +100% Movement Speed
Soul Sand Valley Fire Resistance 90% chance to replace with Wither Skeleton
Crimson Forest Max Health: 46 33% chance to spawn with Gold armor (4x)
Warped Forest 33% chance to spawn another enderman
Basalt Deltas Size +1 (up to 3)

+15% Attack Damage

Learn More and Download

Download

History

Version Date Change
1.19 22 Aug 2022 Released Combat Expanded
1.20 23 Sep 2023 Updated for 1.20

Module is no longer experimental

1.20.4 25 Jan 2024 Updated for 1.20.4

Introduced the Difficulty Update

Previous Versions

MC 1.20.2 Version

In the 1.20 version Difficulty was calculated in a much simpler way, ranging from 1-10, going up by one for every Minecraft day a player survived.

The 1.20.4 Difficulty Update reworked almost all of how mob stats were calculated to provide a smoother and slower increase in difficulty while making it easier to balance.

Unidentified items were also removed after this version, instead items are "identified" as soon as they drop..

MC 1.19 Version

Many Modifiers have been significantly changed or completely replaced since the original 1.19 version. As the 1.19 version of the module was an experimental version there is no easy upgrade path to 1.20.

The Focused, Berserkers, Poised, Reckless, Guarding, Merchants armor and Deliberate, Light, Ascended weapon Modifiers were removed in the 1.20 update, replaced by Fluxed, Poisonous, Fractal, Archery, Totemic, Equestrian for armor and Giant and Chiming for weapons.

Notes


  1. Mobs are considered to have spawned in the "Dark" if they spawn at light level 0, except if they spawned in Lush Caves.
  2. Except for Size 0 Slimes / Magma Cubes
  3. 3.0 3.1 Except in The End
  4. Mobs are considered to have spawned in the "Dark" if they spawn at light level 0, except if they spawned in Lush Caves.