Initial Release of IGNCore version 2.5

This commit is contained in:
2021-08-09 13:18:56 +02:00
commit a83d98c47e
910 changed files with 224171 additions and 0 deletions
@@ -0,0 +1,39 @@
# noinspection LongLineForFile
DROP TABLE IF EXISTS ofab_weapons;
CREATE TABLE ofab_weapons
(
type SMALLINT NOT NULL,
name VARCHAR(255) NOT NULL
);
INSERT INTO ofab_weapons (type, name)
VALUES (18, 'Mongoose'),
(18, 'Viper'),
(18, 'Wolf'),
(34, 'Bear'),
(34, 'Panther'),
(687, 'Cobra'),
(687, 'Shark'),
(687, 'Silverback'),
(812, 'Hawk'),
(812, 'Peregrine'),
(812, 'Tiger');
DROP TABLE IF EXISTS ofab_weapons_cost;
CREATE TABLE ofab_weapons_cost
(
ql SMALLINT NOT NULL,
vp SMALLINT NOT NULL
);
INSERT INTO ofab_weapons_cost (ql, vp)
VALUES (25, 117),
(50, 488),
(75, 1110),
(100, 1988),
(125, 2365),
(150, 3497),
(175, 5384),
(200, 7987),
(225, 8617),
(250, 10509),
(275, 13665),
(300, 18000);