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
[ | |
{ | |
"id":2, | |
"name":"Oree", | |
"description":"One of the first prototypes created in Nanto Labs, Oree's early versions were the forerunners of Digital Temtem. Inquisitive creatures by design, they show great curiosity and a boundless appetite for information.", | |
"baseAttack":65, | |
"baseDefense":44, | |
"baseHp":61, | |
"baseSpAttack":32, | |
"baseSpDefense":31, |
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
[ | |
{ | |
"zoneId": 0, | |
"isle": 0, | |
"scenes": [ | |
{ | |
"sceneId": 0, | |
"sceneName": "Isle1_City01_Optimized", | |
"spawns": [] | |
}, |
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
### Packet ### | |
byte headerByte; | |
bool isEncrypted = (headerByte & 64) > 0; | |
bool isCompressed = (headerByte & 32) > 0; | |
bool isBlueBoxed = (headerByte & 16) > 0; | |
bool isBigSized = (headerByte & 8) > 0; | |
short dataSize; (int if isBigSized) | |
byte dataType; (Root element should always be 0x12 (Container)) | |
Container container; |
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
[ | |
{ | |
"id":0, | |
"internalId":0, | |
"itemNameKey":"InventoryGeneral/SmokeBomb", | |
"itemName":"Smoke Bomb", | |
"itemDescKey":"InventoryGeneralDesc/SmokeBomb", | |
"itemDesc":"The best-loved Cipanki firework. The puff of smoke allows you to get back to the Temporium or safe place visited last.", | |
"itemType":"General", | |
"canBeSold":true, |