* Added States for monsters and corpses
Now can properly identify if a corpse is interactable with a skill ( barbarian, necromancer)
Also getting states about monsters : Exemple Soul Killer with Conviction aura: State 28 // conviction
Also can tell if monster has a state after you used a skill on it Exemple: State 56 Terror ( After using Barbarian skill Howl to fear )
Another Exemple using Grief on Mephistos he now have states : 2 poison
52 Preventheal
will be very useful for further development.
* Added modes to player
Now accessible in koolo using : s.data.PlayerUnit.Mode
Those are Modes for player:
const Death: 0;
const StandingOutsideTown: 1;
const Walking: 2;
const Running: 3;
const GettingHit: 4;
const StandingInTown: 5;
const WalkingInTown: 6;
const Attacking1: 7;
const Attacking2: 8;
const Blocking: 9;
const CastingSkill: 10;
const ThrowingItem: 11;
const Kicking: 12;
const UsingSkill1: 13;
const UsingSkill2: 14;
const UsingSkill3: 15;
const UsingSkill4: 16;
const Dead: 17;
const SkillActionSequence: 18;
const KnockedBack: 19;
* update Added alias(const) for player modes
can be used like this s.data.PlayerUnit.Mode == mode.StandingInTown
* Added panelManager support for d2go (crude implementation but works)
* Refined a little bit
* Made widget map a more mappy map which can be access without iterations
* Added widgets to debugger
* Added shrines, i think
* Fixed shrines
* Fix for actually determining a shrine the correct way
* Updated to use a Shrine object instead of a boring ID
* After deliberation, removed extra position thingamajigger
* Added a temporary fix to have a minimum value of 1 for per level mods
* Expose Stat Aliases and Type Aliases (#25)
* Fixed setting a minimum value of 1 for per level item stats
* Added minimum value of attack rating per level to be 15
* Added min value for replenish durability/quantity
* Added fix for reading item modifiers - enhanced damage now works
* Delete .idea/.gitignore
* Delete .idea/d2go.iml
* Delete .idea/modules.xml
* Delete .idea/vcs.xml
* Added gitignore file
* Refactored code
---------
Co-authored-by: dmeli <d.melia@outlook.fr>
Co-authored-by: Arto Simonyan <artosimonyan@protonmail.com>