New henna pattern potential system.

Thanks to Serenitty and Index.
This commit is contained in:
MobiusDevelopment
2022-02-09 17:50:39 +00:00
parent 384abd5695
commit c4acf141fe
44 changed files with 17260 additions and 16526 deletions

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `character_potens`;
CREATE TABLE IF NOT EXISTS `character_potens` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`enchant_level` INT,
`enchant_exp` INT,
`poten_id` INT,
PRIMARY KEY (`charId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;