Skip to content

Instantly share code, notes, and snippets.

View EquiFox's full-sized avatar
🏠
Working from home

Nicolas Tremblay EquiFox

🏠
Working from home
  • Quebec City, QC, Canada
View GitHub Profile
@EquiFox
EquiFox / Items.json
Created January 23, 2020 21:33
Temtem Item Definitions
[
{
"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,
### 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;
@EquiFox
EquiFox / Zones.json
Created January 27, 2020 04:32
Temtem All Possible Encounters & Existing Zones
[
{
"zoneId": 0,
"isle": 0,
"scenes": [
{
"sceneId": 0,
"sceneName": "Isle1_City01_Optimized",
"spawns": []
},
@EquiFox
EquiFox / Temtems.json
Created January 27, 2020 20:37
Complete Temtem List + Techniques
[
{
"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,