Description
Not Enough Potions
A quick note from me: I know I haven't been updating this mod as much as I'd like. The truth is I've been studying everything I can, exploring the limits of Hytale modding, while also working on servers and new mods , for example the phone mod (Phones). Because of that I haven't had the time to polish this mod the way I wanted
That said, I'm always open to any messages, feedback, or help from anyone. I can also open the project as open source with a public GitHub if the community finds it useful.
Take care! i will be reading the comments :D
Ever felt like vanilla potions weren't enough?
Not Enough Potions expands the game with new content focused on Morph transformations, utility potions, and area-based splash potions with custom visual effects.
🎥 NEW Video Showcase / Preview:

🎥 Video Showcase / Preview:

Changelog v2.0
New Potions
- Invisibility Splash , Throwable invisibility, works on players
- Night Vision , Adds a light source around the player for visibility in the dark
- Jump Boost , Increases jump height
- Strength , Increases damage dealt by 1.5x
- Resistance , Reduces incoming damage
- Life Steal , Heals 30% of damage dealt to enemies
- Thorns , Reflects 30% of incoming damage back to the attacker
Fixes
- Cleanse potion now properly resets the player model when used.
- Levitation Splash now works on NPCs on the first throw.
Notes
- Tested and compatible with Update 4.
- Memory requirement lowered to level 1 for all potions.
- Still needs additional testing , bugs may appear.
Current Features (v2.0)
Morphing Potions (Transformations)
Transform into creatures with unique bonuses and special gameplay effects.
Available Morphs:
- Bear (Knockback x2.0)
- Wolf (Speed x1.8 + BoostSpeed)
- Goblin (Speed x1.3)
- Skeleton
- Zombie
- Trork (Knockback x1.5 + BoostSpeed)
- Fire Dragon (Flying enabled)
- Frost Dragon (Flying enabled)
- Void Dragon (Flying enabled)
All morph potions are craftable at the Alchemy Bench with thematic ingredients.
Utility Potions
Potions designed for mobility, quality-of-life, and effect control.
Available Utility Potions:
- Potion of Speed (Speed x1.5 + BoostSpeed)
- Greater Potion of Speed (Speed x1.75 + BoostSpeed)
- Invisibility Potion
- Potion of Homeward (Teleport Home)
- Potion of Duration Refresh (Resets all active effects to 60s)
- Potion of Cleansing (Removes all effects: morphs, flight, speed)
- Potion of Water Breathing
- Greater Potion of Water Breathing (20 minutes)
- Potion of Stamina Plus
- Greater Potion of Stamina Plus
- Potion of Levitation
- Potion of Night Vision
- Potion of Jump Boost
- Potion of Strength (1.5x damage)
- Potion of Resistance (reduced incoming damage)
- Potion of Life Steal (30% heal on hit)
- Potion of Thorns (30% damage reflection)
Splash Potions (AOE)
Throwable potions that apply instant effects in an area.
Available Splash Potions:
- Splash Potion of Water Breathing (2 minutes, AOE)
- Splash Potion of Healing (+30 HP to allies)
- Splash Potion of Poison (Damage over time to enemies)
- Splash Potion of Freezing (Freezes enemies for 5 seconds)
- Splash Potion of Chickening (Transforms enemies into chickens)
- Splash Potion of Levitation (levitate your enemies)
- Splash Potion of Invisibility (hide your allies)
All splash potions share:
- 5 block effect radius
- Custom projectile models by color
- Impact particles and sound effects
- Throw animation
Crafting Station
All potions are crafted at:
- Alchemy Bench
Category:Alchemy_Potions_Misc
Commands
/nep <creature>– Transform into a creature/nep list– Show all available transformations/nep normal– Return to normal form
Custom Potion Interactions (Java)
This mod includes custom potion effects and interactions such as:
- TeleportHome
- EnableFlying
- BoostSpeed
- CleanseMorph
- RefreshDuration
- Invisibility
- AreaOfEffect
- FreezeEntity
- MorphEntity
- NightVision
- JumpBoost
- Levitation
- Strength (via DamageSystem)
- Life Steal (via DamageSystem)
- Thorns (via DamageSystem)
Server Configuration
A config file is created in the server mods config folder and allows full customization. Required OP is for enable the commands to everyone if false.
Example:
{
"requireOp": true,
"enabledPotions": {
"Potion_Speed": false,
"Potion_Scale_Shrink": false,
"Potion_Teleport_Home": false,
"Potion_Duration_Refresh": false,
"Potion_Morph_Bear": true,
"Potion_Morph_Dragon_Void": false,
"Potion_Cleanse": false,
"Potion_Morph_Dragon_Fire": false,
"Potion_Morph_Wolf": false,
"Potion_Morph_Goblin": false,
"Potion_Morph_Zombie": false,
"Potion_Fall_Damage": false,
"Potion_Fire_Resist": false,
"Potion_Morph_Skeleton": false,
"Potion_Morph_Trork": false,
"Potion_Speed_Greater": false,
"Potion_Water_Breathe": false,
"Potion_Water_Breathe_Greater": false,
"Potion_Invisibility": false,
"Potion_Invisibility_Splash": false,
"Potion_Morph_Dragon_Frost": false,
"Potion_Scale_Grow": false,
"Potion_Splash_Poison": true,
"Potion_Splash_Healing": true,
"Potion_Splash_Freeze": true,
"Potion_Splash_Chick": true,
"Potion_Splash_Water_Breathe": true,
"Potion_Stamina_Plus": true,
"Potion_Stamina_Plus_Greater": true,
"Potion_Levitation": true,
"Potion_Levitation_Splash": true,
"Potion_Night_Vision": true,
"Potion_Jump_Boost": true,
"Potion_Strength": true,
"Potion_Resistance": true,
"Potion_Life_Steal": true,
"Potion_Thorns": true
},
"customRecipes": {
"Potion_Morph_Bear": {
"timeSeconds": 5.0,
"requiredMemoriesLevel": 3,
"ingredients": {
"Potion_Empty": 1,
"Ingredient_Life_Essence": 10,
"Ingredient_Void_Essence": 500
}
}
}
}