poke-engine 0.0.11

A Pokemon battle engine that can be used to search through the state space of a Pokemon battle.
Documentation
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

if [ -z "$1" ]; then
    echo "Usage: ./build <generation>"
    echo "Example: ./build gen4"
    exit 1
fi

cargo build --release --features "$1,last_used_move,damage_dealt" --no-default-features