Paperdata values discovery

This commit is contained in:
stratic-dev
2024-07-05 22:38:35 +01:00
parent 9840e55056
commit 2a1c80b2af
6 changed files with 1026 additions and 45 deletions

View File

@@ -0,0 +1,23 @@
BEGIN;
CREATE TABLE IF NOT EXISTS paper_data_gifts (
id serial PRIMARY KEY,
gift_id integer,
item_id integer,
unk0 integer,
unk1 integer,
chance integer
);
CREATE TABLE IF NOT EXISTS paper_data (
id serial PRIMARY KEY,
paper_type integer,
paper_id integer,
option1 integer,
option2 integer,
option3 integer,
option4 integer,
option5 integer
);
END;