- announcer
- [enemy_goomonster](http://ht.cdn.turner.com/to
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # Wiki Data | |
| # Parses definition files for DB wiki data. | |
| import json | |
| import time | |
| import traceback | |
| import urllib.request | |
| CHAMPION_ENTRY = """|{id} = {{{{#switch: {{{{lc:{{{{{{2}}}}}}}}}} |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| import os | |
| import urllib.request | |
| import xml.etree.ElementTree as ET | |
| ROOT_URL = "http://ht.cdn.turner.com/toon/big/champions/20140915/" | |
| DEFINITIONS_URL = ROOT_URL + "definitions/{}.xml" | |
| SOUNDS_URL = ROOT_URL + "assets/sounds/{}.ogg" |
This file contains hidden or 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
| Introduction | |
| I. CoilSnake | |
| Chapter 1. Getting Started | |
| Chapter 2. Your First Hack | |
| Chapter 3. NPCs | |
| Chapter 4. Playable Characters | |
| Chapter 5. Doors, Ropes and Stairs | |
| Chapter 6. PSI Abilities | |
| Chapter 7. Teleportation | |
| Chapter 8. Battle – Actions |
This file contains hidden or 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
| CoilSnake 1.1 (8/21/12) | |
| From ROM : ../ROM.smc ( Earthbound ) | |
| To Project : ../Data ( Earthbound ) | |
| - Patches ... 100.00% (0.08s) | |
| - CCScript ... 100.00% (0.00s) | |
| - Skip Names ... 100.00% (0.00s) | |
| - Map Sprites ... 100.00% (0.45s) | |
| - Doors ... 100.00% (0.79s) | |
| - Sprite Groups ... 100.00% (7.71s) | |
| - Misc Tables ... 100.00% (1.12s) |
This file contains hidden or 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
| /* | |
| * Omnibot | |
| */ | |
| #ifndef VAULT_H | |
| #define VAULT_H | |
| #include <mutex> | |
| #include <vector> |
This file contains hidden or 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
| include_directories("../../CoreLib") | |
| include_directories("../../NucleusLib") | |
| include_directories("../../NucleusLib/inc") | |
| include_directories("../../PubUtilLib") | |
| include_directories("../../PubUtilLib/inc") | |
| include_directories("../../FeatureLib") | |
| include_directories("../../FeatureLib/inc") | |
| include_directories(${PYTHON_INCLUDE_DIR}) |
This file contains hidden or 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
| def List(player="me"): | |
| avatar = GetOneAvatar(player).avatar | |
| returnList = list() | |
| clothingList = avatar.getAvatarClothingList() | |
| for item in clothingList: | |
| theItem = dict() | |
| theItem["name"] = item[0] | |
| theItem["color"] = list() | |
| theItem["morph"] = list() |
This file contains hidden or 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
| def IFilterAgeName(self, ageName): | |
| # Replace file names with display names - only once, from the right. | |
| # This fixes a bug in which avatars' names containing words like Garden | |
| # incorrectly get replaced. | |
| for Age in kAges.Replace: | |
| ageNameList = ageName.rsplit(Age, 1) | |
| ageName = kAges.Replace.join(ageNameList) | |
| # Find the appropriate display name. |
This file contains hidden or 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
| KI: | |
| content: the content displayed in the right section. | |
| folders: the three major folders (and all their sub-folders). | |
| level: the level of the KI. | |
| list: the list displayed in the left section. | |
| state: the current state of the KI (micro KI, big KI...). | |
| variables: time, username, KI number... | |
| KIFolder: | |
| children: the folders or items in this folder (not a mix). |
NewerOlder