diff --git a/Changelog.md b/Changelog.md index 7fd8349a..1cd25cca 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,22 @@ +0.4.1 +------ +released: 2021-08-08 + +What changed until this release? +- Added [EffectFreezing](wiki.md#freezing) +- Added ice Poketes ([Cubl](wiki.md#cubl), [Spikl](wiki.md#spikl)) and attacks ([freeze](wiki.md#freeze), [Snow storm](wiki.md#snow-storm), [Sword of ice](wiki.md#sword-of-ice)) +- Added some more new Poketes ([Confuso](wiki.md#confuso), [Poisopla](wiki.md#poisopla)) and attacks ([Confusion](wiki.md#confusion), [Posion spores](wiki.md#poison-spores), [Root slap](wiki.md#root-slap)) +- Added shiny Poketes +- Outsourced all map information to maps.py +- Added version checking to warn about data loss when downgrading +- Sorted the Poketes and attacks in the wiki by types +- Fixed the effectivity of [EffectBurning](wiki.md#burning) +- Fixed logic bug in most effects, so that some types are not affected by some effects +- Added Pokete dex for the user to keep track of all Pokete 'races' they have ever caught regardless of wether or not the Poketes are in the deck or not +- Cleaned up save file to be more readable for humans +- Changed development flow + + 0.4.0 ------ released: 2021-08-01 diff --git a/README.md b/README.md index b58ae956..ac87dd76 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ For additional information you can see [wiki](wiki.md). - [x] Add potions - [x] Add Intro - [x] Add trading -- [ ] Add Poketedex +- [x] Add Poketedex - [x] Effects - [x] Add color codes for types @@ -93,7 +93,7 @@ New Pokete contributions are especially welcome, those are located in /pokete_da After adding new Poketes and/or Attacks you may want to run ```shell -$ gen-wiki.py +$ ./gen-wiki.py ``` to regenerate the wiki and adding them to it. diff --git a/gen-wiki.py b/gen-wiki.py index c6b2e7cb..5f8ca273 100755 --- a/gen-wiki.py +++ b/gen-wiki.py @@ -12,7 +12,7 @@ def gen_wiki(): md_str = f"""v{ver} # Pokete wiki This wiki/documentation is a compilation of all Poketes/attacks/types present in the Pokete game. -This wiki can be generated using ```$ gen-wiki.py```. +This wiki can be generated using ```$ ./gen-wiki.py```. ## Table of contents 1. [Poketes](#poketes) diff --git a/pokete.py b/pokete.py index 404efe80..2ee71695 100755 --- a/pokete.py +++ b/pokete.py @@ -20,7 +20,7 @@ from pokete_classes import * from pokete_general_use_fns import * -__version__ = "0.4.0" +__version__ = "0.4.1" __save_path__ = "/.cache/pokete" # Class definition diff --git a/wiki.md b/wiki.md index ad54ab7e..61f4c06d 100644 --- a/wiki.md +++ b/wiki.md @@ -1,8 +1,8 @@ -v0.4.0 +v0.4.1 # Pokete wiki This wiki/documentation is a compilation of all Poketes/attacks/types present in the Pokete game. -This wiki can be generated using ```$ gen-wiki.py```. +This wiki can be generated using ```$ ./gen-wiki.py```. ## Table of contents 1. [Poketes](#poketes)