From 405173d6cd859ba2b907faf889a158a5d0ab9810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zo=C3=A9=20Cassiop=C3=A9e=20Gauthier?= Date: Fri, 5 Apr 2024 22:17:04 -0400 Subject: [PATCH] Update README to remove the examples using '--refresh' --- README.md | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 35cdf8a..45bf0c7 100644 --- a/README.md +++ b/README.md @@ -10,20 +10,12 @@ pip install -e . ## Usage -To run the simulations, choose your parameters such as attacker type, attacker level, and wether Party Power is active. -Try to fill the stored results database with any of the following: +To run the simulations, choose your parameters such as attacker type, attacker level, and whether Party Power is active. +Display the average scaled estimators for attackers of the given type: ```console -ase-cli --refresh POKEMON_TYPE_GRASS # Grass attackers. Defaults to level 40 and no Party Power. -ase-cli --refresh --level 30 POKEMON_TYPE_GRASS # Level 30 Grass attackers, no Party Power. -ase-cli --refresh --party 2 POKEMON_TYPE_GRASS # Level 40 Grass attackers, Party Power with two trainers. -ase-cli --refresh POKEMON_TYPE_DARK POKEMON_TYPE_GHOST # Combined Dark and Ghost attackers. -``` - -Once the database contains the desired simulation results, display the average scaled estimators for attackers of the -given type: - -```console -ase-cli POKEMON_TYPE_GRASS -ase-cli --level 30 POKEMON_TYPE_GRASS +ase-cli POKEMON_TYPE_GRASS # Grass attackers. Defaults to level 40 and no Party Power. +ase-cli --level 30 POKEMON_TYPE_GRASS # Level 30 Grass attackers, no Party Power. +ase-cli --party 2 POKEMON_TYPE_GRASS # Level 40 Grass attackers, Party Power with two trainers. +ase-cli POKEMON_TYPE_DARK POKEMON_TYPE_GHOST # Combined Dark and Ghost attackers. ```