From f81909408c40cda0ea1468d81ee47902a87bad7e Mon Sep 17 00:00:00 2001
From: xdh <xiefantasy@qq.com>
Date: 星期二, 14 八月 2018 09:54:14 +0800
Subject: [PATCH] fix:2385 boss复活调整

---
 db/PyMongoDataServer/index/GameSys.txt |  200 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 200 insertions(+), 0 deletions(-)

diff --git a/db/PyMongoDataServer/index/GameSys.txt b/db/PyMongoDataServer/index/GameSys.txt
new file mode 100644
index 0000000..401ee94
--- /dev/null
+++ b/db/PyMongoDataServer/index/GameSys.txt
@@ -0,0 +1,200 @@
+#数据库的索引字典
+{
+    'tagBornRefresh':	#表名
+    {
+        'RefreshID_1':	#索引名
+        {
+            'unique':True,
+            'key':[ ('RefreshID', 1) ]	#索引的字典和递增(1)或递减(-1)
+	}
+    },
+
+    'tagBuildEquip':
+    {
+        'BuildID_1':
+                {
+                    'unique':True,
+                    'key':[ ('BuildID', 1) ]
+                }
+    },
+
+    'tagEffectRefresh':
+    {
+        'RefreshID_1':
+        {
+            'unique':True,
+            'key':[ ('RefreshID', 1) ]
+        }
+    },
+
+    'tagChinMixItem':
+    {
+        'MixItemID_1':
+        {
+            'unique':True,
+            'key':[ ('MixItemID', 1) ]
+        }
+    },
+
+    'tagChinTitleMix':
+    {
+        'TitleID_1':
+        {
+            'unique':True,
+            'key':[ ('TitleID', 1) ]
+        }
+    },
+
+    'tagSuiteEffect':
+    {
+        'SuiteID_1':
+        {
+            'unique':True,
+            'key':[ ('SuiteID', 1) ]
+        }
+    },
+
+    'tagChinExp':
+    {
+        'LV_1':
+        {
+            'unique':True,
+            'key':[ ('LV', 1) ]
+        }
+    },
+
+    'tagChinItem':
+    {
+        'ID_1':
+        {
+            'unique':True,
+            'key':[ ('ID', 1) ]
+        }
+    },
+
+    'tagChinNPC':
+    {
+        'NPCID_1':
+        {
+            'unique':True,
+            'key':[ ('NPCID', 1) ]
+        }
+    },
+
+    'tagNPCRefresh':
+    {
+        'RefreshID_1':
+        {
+            'unique':True,
+            'key':[ ('RefreshID', 1) ]
+        }
+    },
+
+    'tagNPC_Item_Pet':
+    {
+        'NPCID_1':
+        {
+            'unique':True,
+            'key':[ ('NPCID', 1) ]
+        }
+    },
+
+    'tagOnMissionDelete':
+    {
+        'MissionID_1':
+        {
+            'unique':True,
+            'key':[ ('MissionID', 1) ]
+        }
+    },
+
+    'tagPetExp':
+    {
+        'Lv_1':
+        {
+            'unique':True,
+            'key':[ ('Lv', 1) ]
+        }
+    },
+
+    'tagPetFriendliness':
+    {
+        'ZoneStart_1':
+        {
+            'unique':True,
+            'key':[ ('ZoneStart', 1) ]
+        }
+    },
+
+    'tagPetGrade':
+    {
+        'GradeStart_1':
+        {
+            'unique':True,
+            'key':[ ('GradeStart', 1) ]
+        }
+    },
+
+    'tagRepeatEvent':
+    {
+        'EventID_1':
+        {
+            'unique':True,
+            'key':[ ('EventID', 1) ]
+        }
+    },
+
+    'tagChinShopItem':
+    {
+        'ShopItemID_1':
+        {
+            'unique':True,
+            'key':[ ('ShopItemID', 1) ]
+        }
+    },
+
+    'tagChinSkill':
+    {
+        'SkillID_1':
+        {
+            'unique':True,
+            'key':[ ('SkillID', 1) ]
+        }
+    },
+
+    'tagSuiteActivation':
+    {
+        'EquipID_1':
+        {
+            'unique':True,
+            'key':[ ('EquipID', 1) ]
+        }
+    },
+
+    'tagPet':
+    {
+        'NPCID_1':
+        {
+            'unique':True,
+            'key':[ ('NPCID', 1) ]
+        }
+    },
+
+    'tagDBStoreItem':
+    {
+        'StoreItemKey_1':
+        {
+            'unique':True,
+            'key':[ ('StoreItemKey', 1) ]
+        }
+    },
+
+    'tagTransportRefresh':
+    {
+        'RefreshID_1':
+        {
+            'unique':True,
+            'key':[ ('RefreshID', 1) ]
+        }
+    },
+}

--
Gitblit v1.8.0