As the title says.
How do to change the name of the movement?
For example, changing TACKLE by KICK (just an example)
As the title says.
How do to change the name of the movement?
For example, changing TACKLE by KICK (just an example)
Server side:
org > pokenet > server > battle > mechanics >moves MoveList.java
Look for:
You can do this with any move. Rename it.Code:m_moves.add(new MoveListEntry("Tackle", new PokemonMove(PokemonType.T_NORMAL, 35, 0.95, 35)));
Client side:
org > pokenet > client > backend > entity > Enums.java
Look forRename that to what you named it in MoveList.java.Code:tackle
Save, compile, there you go.
I haven't tested it, but in theory that should work. Let me know.