Skip to content

Commit

Permalink
Add ancient_trait property to Card
Browse files Browse the repository at this point in the history
  • Loading branch information
adback03 committed Sep 5, 2016
1 parent 0d0e1ab commit a7ab273
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Import (Card and Set will be most used)
subtype
supertype
ability
ancient_trait
hp
number
artist
Expand Down
1 change: 1 addition & 0 deletions pokemontcgsdk/card.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def __init__(self, response_dict={}):
self.weaknesses = response_dict.get('weaknesses')
self.resistances = response_dict.get('resistances')
self.ability = response_dict.get('ability')
self.ancient_trait = response_dict.get('ancientTrait')

@staticmethod
def find(id):
Expand Down
2 changes: 1 addition & 1 deletion pokemontcgsdk/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# http://www.opensource.org/licenses/MIT-license
# Copyright (c) 2016, Andrew Backes <[email protected]>

__version__ = "1.0.0"
__version__ = "1.1.0"
__pypi_packagename__ = "pokemontcgsdk"
__github_username__ = "PokemonTCG"
__github_reponame__ = "pokemon-tcg-sdk-python"
Expand Down

0 comments on commit a7ab273

Please sign in to comment.