Chronicle 4 branch.
This commit is contained in:
18
L2J_Mobius_C4/dist/db_installer/sql/pets.sql
vendored
Normal file
18
L2J_Mobius_C4/dist/db_installer/sql/pets.sql
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
-- ---------------------------
|
||||
-- Table structure for pets
|
||||
-- ---------------------------
|
||||
CREATE TABLE IF NOT EXISTS pets (
|
||||
item_obj_id decimal(11) NOT NULL default 0,
|
||||
name varchar(16) ,
|
||||
level decimal(11) ,
|
||||
curHp decimal(18,0) ,
|
||||
curMp decimal(18,0) ,
|
||||
exp decimal(20) ,
|
||||
sp decimal(11) ,
|
||||
maxload decimal(11) ,
|
||||
fed decimal(11) ,
|
||||
weapon int(5) ,
|
||||
armor int(5) ,
|
||||
jewel int(5) ,
|
||||
PRIMARY KEY (item_obj_id)
|
||||
);
|
Reference in New Issue
Block a user