-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed test, moved items to pokete_data, added items to wiki
- Loading branch information
1 parent
3a8a784
commit 379e007
Showing
5 changed files
with
95 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from pokete_data.poketes import * | ||
from pokete_data.attacks import * | ||
from pokete_data.maps import * | ||
from pokete_data.classes import * | ||
from pokete_data.types import * | ||
from pokete_data.items import * | ||
|
||
|
||
if __name__ == "__main__": | ||
print("\033[31;1mDo not execute this!\033[0m") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
items = { | ||
"poketeball": { | ||
"pretty_name": "Poketeball", | ||
"desc": "A ball you can use to catch Poketes", | ||
"price": 2, | ||
"fn": "fight_poketeball" | ||
}, | ||
"superball": { | ||
"pretty_name": "Superball", | ||
"desc": "A ball you can use to catch Poketes with an increased chance", | ||
"price": 10, | ||
"fn": "fight_superball" | ||
}, | ||
"healing_potion": { | ||
"pretty_name": "Healing potion", | ||
"desc": "Heals a Pokete with 5 HP", | ||
"price": 15, | ||
"fn": "fight_heal_potion" | ||
}, | ||
"super_potion": { | ||
"pretty_name": "Super potion", | ||
"desc": "Heals a Pokete with 15 HP", | ||
"price": 25, | ||
"fn": "fight_super_potion" | ||
}, | ||
} | ||
|
||
|
||
if __name__ == "__main__": | ||
print("\033[31;1mDo not execute this!\033[0m") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters