kimi gone wild

This commit is contained in:
ra
2026-02-14 23:12:33 -07:00
parent bbd205ecbe
commit 0222be36c5
98 changed files with 39726 additions and 309 deletions

View File

@@ -0,0 +1,22 @@
defmodule Odinsea.Game.Movement.ChangeEquip do
@moduledoc """
Change equip special awesome - equipment change during movement.
Ported from Java ChangeEquipSpecialAwesome.java
Used for:
- Changing equipment mid-movement (commands 10, 11)
- Quick gear switching
Note: Position is always 0,0 for this fragment type.
"""
@type t :: %__MODULE__{
command: integer(), # Movement command type (10, 11)
wui: integer() # Weapon upgrade index or similar
}
defstruct [
:command,
:wui
]
end