Ignore:
Timestamp:
Jan 16, 2012 7:56:19 AM (4 months ago)
Author:
MELERIX
Message:

STABLE: Sync with BETA [8629]

Location:
trunk/L2J_DataPack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack

  • trunk/L2J_DataPack/dist/sql/game/npc_elementals.sql

    r8442 r8630  
    11DROP TABLE IF EXISTS `npc_elementals`; 
    22CREATE TABLE IF NOT EXISTS `npc_elementals` ( 
    3   `npc_id` decimal(11,0) NOT NULL default '0', 
    4   `elemAtkType` tinyint(1) NOT NULL default -1, 
    5   `elemAtkValue` int(3) NOT NULL default 0, 
    6   `fireDefValue` int(3) NOT NULL default 0, 
    7   `waterDefValue` int(3) NOT NULL default 0, 
    8   `windDefValue` int(3) NOT NULL default 0, 
    9   `earthDefValue` int(3) NOT NULL default 0, 
    10   `holyDefValue` int(3) NOT NULL default 0, 
    11   `darkDefValue` int(3) NOT NULL default 0, 
     3  `npc_id` smallint(5) unsigned NOT NULL, 
     4  `elemAtkType` tinyint(1) NOT NULL default '-1', 
     5  `elemAtkValue` int(3) NOT NULL default '0', 
     6  `fireDefValue` int(3) NOT NULL default '0', 
     7  `waterDefValue` int(3) NOT NULL default '0', 
     8  `windDefValue` int(3) NOT NULL default '0', 
     9  `earthDefValue` int(3) NOT NULL default '0', 
     10  `holyDefValue` int(3) NOT NULL default '0', 
     11  `darkDefValue` int(3) NOT NULL default '0', 
    1212  PRIMARY KEY (`npc_id`) 
    1313) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
Note: See TracChangeset for help on using the changeset viewer.