Emi Matchu
dc954d7c3c
We're in the process of migrating away from translating these records, because Neopets hasn't supported non-English languages in many years, and it'll simplify our code and database lookups. In Main DTI, we already wrote code to copy these fields onto the main records and keep them in sync for now; now, once DTI 2020 isn't referencing them anymore, it should be safe for the main app to drop the tables altogether. Note that some Prettier changes got mixed in here and that's fine! I also wasn't suuuper careful testing these, most of them seem to be trivially testable by just loading the homepage or doing a few basic wardrobe actions, and the others are in Discord support log actions that aren't enabled in development mode, so I'm just like… ehh I'll do a couple support actions after deploy and see that they don't crash!
105 lines
8.3 KiB
SQL
105 lines
8.3 KiB
SQL
-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
|
|
--
|
|
-- Host: legacy.impress.openneo.net Database: openneo_impress
|
|
-- ------------------------------------------------------
|
|
-- Server version 5.5.62-0ubuntu0.14.04.1-log
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8mb4 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Table structure for table `species`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `species`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `species` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`name` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `species`
|
|
--
|
|
|
|
LOCK TABLES `species` WRITE;
|
|
/*!40000 ALTER TABLE `species` DISABLE KEYS */;
|
|
INSERT INTO `species` VALUES (1,'acara'),(2,'aisha'),(3,'blumaroo'),(4,'bori'),(5,'bruce'),(6,'buzz'),(7,'chia'),(8,'chomby'),(9,'cybunny'),(10,'draik'),(11,'elephante'),(12,'eyrie'),(13,'flotsam'),(14,'gelert'),(15,'gnorbu'),(16,'grarrl'),(17,'grundo'),(18,'hissi'),(19,'ixi'),(20,'jetsam'),(21,'jubjub'),(22,'kacheek'),(23,'kau'),(24,'kiko'),(25,'koi'),(26,'korbat'),(27,'kougra'),(28,'krawk'),(29,'kyrii'),(30,'lenny'),(31,'lupe'),(32,'lutari'),(33,'meerca'),(34,'moehog'),(35,'mynci'),(36,'nimmo'),(37,'ogrin'),(38,'peophin'),(39,'poogle'),(40,'pteri'),(41,'quiggle'),(42,'ruki'),(43,'scorchio'),(44,'shoyru'),(45,'skeith'),(46,'techo'),(47,'tonu'),(48,'tuskaninny'),(49,'uni'),(50,'usul'),(51,'wocky'),(52,'xweetok'),(53,'yurble'),(54,'zafara'),(55,'vandagyre');
|
|
/*!40000 ALTER TABLE `species` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `colors`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `colors`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `colors` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`basic` tinyint(1) DEFAULT NULL,
|
|
`standard` tinyint(1) DEFAULT NULL,
|
|
`prank` tinyint(1) NOT NULL DEFAULT '0',
|
|
`name` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `colors`
|
|
--
|
|
|
|
LOCK TABLES `colors` WRITE;
|
|
/*!40000 ALTER TABLE `colors` DISABLE KEYS */;
|
|
INSERT INTO `colors` VALUES (-1,0,1,1,'nebula'),(1,0,1,0,'alien'),(2,0,0,0,'apple'),(3,0,0,0,'asparagus'),(4,0,0,0,'aubergine'),(5,0,0,0,'avocado'),(6,0,0,0,'baby'),(7,0,1,0,'biscuit'),(8,1,1,0,'blue'),(9,0,0,0,'blueberry'),(10,0,1,0,'brown'),(11,0,1,0,'camouflage'),(12,0,0,0,'carrot'),(13,0,1,0,'checkered'),(14,0,1,0,'chocolate'),(15,0,0,0,'chokato'),(16,0,1,0,'christmas'),(17,0,1,0,'clay'),(18,0,1,0,'cloud'),(19,0,1,0,'coconut'),(20,0,1,0,'custard'),(21,0,1,0,'darigan'),(22,0,1,0,'desert'),(23,0,1,0,'disco'),(24,0,0,0,'durian'),(25,0,1,0,'electric'),(26,0,1,0,'faerie'),(27,0,1,0,'fire'),(28,0,1,0,'garlic'),(29,0,1,0,'ghost'),(30,0,1,0,'glowing'),(31,0,1,0,'gold'),(32,0,0,0,'gooseberry'),(33,0,0,0,'grape'),(34,1,1,0,'green'),(35,0,1,0,'grey'),(36,0,1,0,'halloween'),(37,0,1,0,'ice'),(38,0,1,0,'invisible'),(39,0,1,0,'island'),(40,0,1,0,'jelly'),(41,0,0,0,'lemon'),(42,0,0,0,'lime'),(43,0,1,0,'mallow'),(44,0,0,0,'maraquan'),(45,0,1,0,'msp'),(46,0,0,0,'mutant'),(47,0,0,0,'orange'),(48,0,0,0,'pea'),(49,0,0,0,'peach'),(50,0,0,0,'pear'),(51,0,0,0,'pepper'),(52,0,0,0,'pineapple'),(53,0,1,0,'pink'),(54,0,1,0,'pirate'),(55,0,0,0,'plum'),(56,0,1,0,'plushie'),(57,0,1,0,'purple'),(58,0,1,0,'quigukiboy'),(59,0,1,0,'quigukigirl'),(60,0,1,0,'rainbow'),(61,1,1,0,'red'),(62,0,1,0,'robot'),(63,0,1,0,'royalboy'),(64,0,1,0,'royalgirl'),(65,0,1,0,'shadow'),(66,0,1,0,'silver'),(67,0,1,0,'sketch'),(68,0,1,0,'skunk'),(69,0,1,0,'snot'),(70,0,1,0,'snow'),(71,0,1,0,'speckled'),(72,0,1,0,'split'),(73,0,1,0,'sponge'),(74,0,1,0,'spotted'),(75,0,1,0,'starry'),(76,0,1,0,'strawberry'),(77,0,1,0,'striped'),(78,0,0,0,'thornberry'),(79,0,0,0,'tomato'),(80,0,1,0,'tyrannian'),(81,0,1,0,'usuki boy'),(82,0,1,0,'usuki girl'),(83,0,1,0,'white'),(84,1,1,0,'yellow'),(85,0,1,0,'zombie'),(86,0,0,0,'onion'),(87,0,1,0,'magma'),(88,0,1,0,'relic'),(89,0,1,0,'woodland'),(90,0,1,0,'transparent'),(91,0,1,0,'maractite'),(92,0,0,0,'8-bit'),(93,0,1,0,'swamp gas'),(94,0,1,0,'water'),(95,0,1,0,'wraith'),(96,0,1,0,'eventide'),(97,0,1,0,'elderlyboy'),(98,0,1,0,'elderlygirl'),(99,0,1,0,'stealthy'),(100,0,1,0,'dimensional'),(101,0,0,0,'agueena'),(102,0,1,0,'pastel'),(103,0,1,0,'ummagine'),(104,0,1,0,'Polka Dot'),(105,0,1,0,'Candy'),(106,0,1,0,'marble'),(107,NULL,1,0,'Steampunk'),(108,0,1,0,'Toy'),(109,0,0,0,'Origami'),(110,0,1,0,'Oil Paint'),(111,0,1,0,'Mosaic'),(112,0,1,0,'Burlap'),(114,0,1,0,'Juppie Swirl'),(115,0,1,0,'Valentine'),(116,0,1,0,'Sroom'),(117,0,1,0,'potato');
|
|
/*!40000 ALTER TABLE `colors` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
|
|
--
|
|
-- Table structure for table `zones`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `zones`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8 */;
|
|
CREATE TABLE `zones` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`depth` int(11) DEFAULT NULL,
|
|
`type_id` int(11) DEFAULT NULL,
|
|
`label` varchar(255) NOT NULL,
|
|
`plain_label` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Dumping data for table `zones`
|
|
--
|
|
|
|
LOCK TABLES `zones` WRITE;
|
|
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
|
|
INSERT INTO `zones` VALUES (1,1,4,'Music','music'),(2,2,4,'Sound Effects','soundeffects'),(3,3,3,'Background','background'),(4,6,1,'Biology Effects','biologyeffects'),(5,7,1,'Hind Biology','hindbiology'),(6,8,2,'Markings','markings'),(7,9,1,'Hind Disease','hinddisease'),(8,10,2,'Hind Cover','hindcover'),(9,11,1,'Hind Transient Biology','hindtransientbiology'),(10,12,1,'Hind Drippings','hinddrippings'),(11,13,2,'Backpack','backpack'),(12,14,1,'Wings Transient Biology','wingstransientbiology'),(13,15,2,'Wings','wings'),(14,17,1,'Hair Back','hairback'),(15,18,1,'Body','body'),(16,19,2,'Markings','markings'),(17,20,1,'Body Disease','bodydisease'),(18,21,1,'Feet Transient Biology','feettransientbiology'),(19,22,2,'Shoes','shoes'),(20,23,1,'Lower-body Transient Biology','lowerbodytransientbiology'),(21,24,2,'Trousers','trousers'),(22,25,1,'Upper-body Transient Biology','upperbodytransientbiology'),(23,26,2,'Shirt/Dress','shirtdress'),(24,28,2,'Necklace','necklace'),(25,29,2,'Gloves','gloves'),(26,30,2,'Jacket','jacket'),(27,31,2,'Collar','collar'),(28,32,1,'Body Drippings','bodydrippings'),(29,33,1,'Ruff','ruff'),(30,34,1,'Head','head'),(31,35,2,'Markings','markings'),(32,36,1,'Head Disease','headdisease'),(33,37,1,'Eyes','eyes'),(34,38,1,'Mouth','mouth'),(35,41,2,'Glasses','glasses'),(36,39,2,'Earrings','earrings'),(37,40,1,'Hair Front','hairfront'),(38,42,1,'Head Transient Biology','headtransientbiology'),(39,43,1,'Head Drippings','headdrippings'),(40,44,2,'Hat','hat'),(41,45,2,'Earrings','earrings'),(42,46,2,'Right-hand Item','righthanditem'),(43,47,2,'Left-hand Item','lefthanditem'),(44,49,3,'Higher Foreground Item','higherforegrounditem'),(45,50,3,'Lower Foreground Item','lowerforegrounditem'),(46,48,2,'Static','static'),(47,51,3,'Thought Bubble','thoughtbubble'),(48,4,3,'Background Item','backgrounditem'),(49,5,2,'Right-hand Item','righthanditem'),(50,16,2,'Hat','hat'),(51,27,2,'Belt','belt'),(52,52,3,'Foreground','foreground');
|
|
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2024-02-03 7:56:31
|