Skip to content

GitLab

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
MythicMobs MythicMobs
  • Project overview
    • Project overview
    • Details
    • Activity
  • Issues 137
    • Issues 137
    • List
    • Boards
    • Labels
    • Service Desk
    • Milestones
  • Operations
    • Operations
    • Incidents
  • Analytics
    • Analytics
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Members
    • Members
  • Activity
  • Create a new issue
  • Issue Boards
Collapse sidebar
  • MythicCraft
  • MythicMobsMythicMobs
  • Wiki
    • Skills
    • Mechanics
  • freeze

freeze · Changes

Page history
added example authored Mar 27, 2023 by Lxlp's avatar Lxlp
Show whitespace changes
Inline Side-by-side
Showing with 21 additions and 5 deletions
+21 -5
  • Skills/mechanics/freeze.md Skills/mechanics/freeze.md +21 -5
  • No files found.
Skills/mechanics/freeze.md
View page @ 58600709
......@@ -14,9 +14,25 @@ Attributes
Examples
--------
Freezes the entity that the mob using this skill is attacking for 100
ticks (5 seconds).
```yaml
Skills:
- freeze{ticks=100} @trigger ~onAttack
```
It's possible that the method above may not work due to how the game handles the freezing status. In case that happens, it's still possible to do something like the following
```yaml
#Inline version for premium users
Freeze_CauseFreezeEffect_Inline:
Skills:
- aura{d=100;i=1;onTick=[ - freeze{ticks=280} - damage{a=1;cd=2;damagecause=FREEZE} ]} @self
Freezes the entity that the mob using this skill is attacking for 100
ticks (5 seconds).
\ No newline at end of file
#Normal version
Freeze_CauseFreezeEffect_Normal:
Skills:
- aura{d=100;i=1;onTick=Freeze_CauseFreezeEffect_Normal_onTick} @self
Freeze_CauseFreezeEffect_Normal_onTick:
Skills:
- freeze{ticks=280}
- damage{a=1;cd=2;damagecause=FREEZE}
```
\ No newline at end of file
Clone repository
Home
Changelogs
Premium Features
Commands and Permissions
FAQ / Common Issues
Mythic Add-ons
Compatible Plugins
API Information
Packs
Mobs
  • Mob Options
  • Mob Levels
  • Mob Factions
  • Power Scaling
  • Damage Modifiers
  • Equipment
  • BossBar
  • Custom AI
  • Custom Kill Messages
  • Threat Tables
  • Immunity Tables
  • Extra: Disguises
  • Extra: ModelEngine
Skills
  • Mechanics
  • Effects
  • Targeters
    • Filters
  • Triggers
  • Conditions
    • In-line conditions
  • Placeholders
  • Variables
  • Math
Items
  • Options
  • Attributes
  • Enchantments
  • Potions
  • Banner Layers
  • Firework
Drops & DropTables
  • Drop Types
Spawning
  • Spawners
  • Random Spawns
Examples