Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
-- ---------------------------
-- Table structure for castle
-- ---------------------------
CREATE TABLE IF NOT EXISTS castle (
id INT NOT NULL default 0,
name varchar(25) NOT NULL,
taxPercent INT NOT NULL default 15,
treasury INT NOT NULL default 0,
siegeDate DECIMAL(20,0) NOT NULL default 0,
siegeDayOfWeek INT NOT NULL default 7,
siegeHourOfDay INT NOT NULL default 20,
PRIMARY KEY (name),
KEY id (id)
);
INSERT IGNORE INTO `castle` VALUES
(1, 'Gludio', 0, 0, 0, 7, 20),
(2, 'Dion', 0, 0, 0, 7, 20),
(3, 'Giran', 0, 0, 0, 1, 16),
(4, 'Oren', 0, 0, 0, 1, 16),
(5, 'Aden', 0, 0, 0, 7, 20),
(6, 'Innadril', 0, 0, 0, 1, 16),
(7, 'Goddard', 0, 0, 0, 1, 16);