Skip to content

Commit

Permalink
Merge pull request #16 from lxgr-linux/release-0.4.1
Browse files Browse the repository at this point in the history
Release 0.4.1
  • Loading branch information
lxgr-linux authored Aug 8, 2021
2 parents ebfc303 + bd5aee8 commit 94ede3e
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
19 changes: 19 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
2 changes: 1 addition & 1 deletion gen-wiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pokete.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions wiki.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 94ede3e

Please sign in to comment.