Forest Strike was developed by Lukas Irzl
Forest Strike was Released on Windows,Mac,Linux
Forest Strike is a Single, Multiplayer & Co-Op game
Forest strike is a 2D round-based strategy game in pixel-art style featuring animals as characters. Each round is divided into multiple phases, such as:
* Pre Phase
* Dice Phase
* Move Phase
* Action Phase
* Post Phase
Pre phase is resetting and initializing needed variables each round.
After the pre phase (which is handled within a single step), the dice phase randomly picks the number of steps you can move.
Now, after we got the number, we finally will be able to move the characters. Moving the characters is limited to an amount of steps (dice phase). During the Move Phase, you can move your characters and use items, such as the simple bomb.
Items are split into two groups: “active” and “passive”. Active items will be shown in the inventory and can be used during the Move Phase, while passive ones will influence different values of the game.
The active items are not handled instantly, they get a sequence number and will be handled in the next phase, the Action Phase. If there are items placed (like a bomb), the action phase handles every item sequentially (by their sequence number). This way, the game provides a great variety regarding building your own strategy.
Lastly, the Post Phase checks some stuff and jumps to the Pre Phase.