forked from GanjaWars/dressroom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgw_items.sql
87 lines (81 loc) · 3.75 KB
/
gw_items.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
-- phpMyAdmin SQL Dump
-- version
-- http://www.phpmyadmin.net
--
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 utf8 */;
-- --------------------------------------------------------
--
-- Структура таблицы `gw_items`
--
DROP TABLE IF EXISTS `gw_items`;
CREATE TABLE IF NOT EXISTS `gw_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`item_id` varchar(32) NOT NULL,
`name` varchar(64) NOT NULL,
`gb` int(11) NOT NULL DEFAULT '0',
`eun` int(11) NOT NULL DEFAULT '0',
`weight` int(11) NOT NULL DEFAULT '0',
`type` tinyint(4) NOT NULL DEFAULT '0',
`slots` varchar(16) NOT NULL,
`skill` tinyint(4) NOT NULL DEFAULT '0',
`required-level-combat` smallint(6) NOT NULL DEFAULT '0',
`required-level-economic` smallint(6) NOT NULL DEFAULT '0',
`required-level-production` smallint(6) NOT NULL DEFAULT '0',
`required-level-synd` int(11) NOT NULL DEFAULT '0',
`required-param-straight` int(11) NOT NULL DEFAULT '0',
`required-param-sharpshooting` int(11) NOT NULL DEFAULT '0',
`required-param-endurance` int(11) NOT NULL DEFAULT '0',
`required-param-life` int(11) NOT NULL DEFAULT '0',
`required-skill-auto` int(11) NOT NULL DEFAULT '0',
`required-skill-bomb` int(11) NOT NULL DEFAULT '0',
`required-skill-heavy` int(11) NOT NULL DEFAULT '0',
`required-skill-pistol` int(11) NOT NULL DEFAULT '0',
`required-skill-shotgun` int(11) NOT NULL DEFAULT '0',
`required-skill-sniper` int(11) NOT NULL DEFAULT '0',
`required-pro-killer` int(11) NOT NULL DEFAULT '0',
`required-pro-mercenary` int(11) NOT NULL DEFAULT '0',
`required-pro-hitman` int(11) NOT NULL DEFAULT '0',
`add-armorHead` int(11) NOT NULL DEFAULT '0',
`add-armorBody` int(11) NOT NULL DEFAULT '0',
`add-armorFoots` int(11) NOT NULL DEFAULT '0',
`add-armorActiveHead` int(11) NOT NULL DEFAULT '0',
`add-armorActiveBody` int(11) NOT NULL DEFAULT '0',
`add-armorActiveFoots` int(11) NOT NULL DEFAULT '0',
`add-param-straight` int(11) NOT NULL DEFAULT '0',
`add-param-sharpshooting` int(11) NOT NULL DEFAULT '0',
`add-param-endurance` int(11) NOT NULL DEFAULT '0',
`add-param-life` int(11) NOT NULL DEFAULT '0',
`add-hp` int(11) NOT NULL,
`add-camouflage` int(11) NOT NULL DEFAULT '0',
`add-nightvision` int(11) NOT NULL DEFAULT '0',
`add-bonus-sapper` int(11) NOT NULL DEFAULT '0',
`add-bonus-sniper` int(11) NOT NULL DEFAULT '0',
`add-bonus-skill` int(11) NOT NULL DEFAULT '0',
`add-bonus-mcCloud` int(11) NOT NULL DEFAULT '0',
`add-bonus-dieHard` int(11) NOT NULL DEFAULT '0',
`add-bonus-aceInHole` int(11) NOT NULL DEFAULT '0',
`add-bonus-healthRecovery` int(11) NOT NULL DEFAULT '0',
`add-bonus-durability` int(11) NOT NULL DEFAULT '0',
`add-bonus-selfMedication` int(11) NOT NULL DEFAULT '0',
`add-bonus-stability` int(11) NOT NULL DEFAULT '0',
`add-bonus-secondStep` int(11) NOT NULL DEFAULT '0',
`add-bonus-adrenalin` int(11) NOT NULL DEFAULT '0',
`add-bonus-manBonus` int(11) NOT NULL DEFAULT '0',
`add-bonus-antikiller` int(11) NOT NULL DEFAULT '0',
`add-bonus-bloodLust` int(11) NOT NULL DEFAULT '0',
`add-bonus-exp` int(11) NOT NULL DEFAULT '0',
`add-bonus-nightCamouflage` int(11) NOT NULL DEFAULT '0',
`add-bonus-rage` int(11) NOT NULL DEFAULT '0',
`add-bonus-secondShot` int(11) NOT NULL DEFAULT '0',
`add-bonus-progress` int(11) NOT NULL DEFAULT '0',
`add-bonus-luck` int(11) NOT NULL DEFAULT '0',
`speed-ground` int(10) unsigned NOT NULL DEFAULT '0',
`speed-water` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;