Skip to content

Commit

Permalink
some sql files for transmog
Browse files Browse the repository at this point in the history
  • Loading branch information
wazy committed Dec 29, 2012
1 parent ecb25bb commit 5236618
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sql/updates/character/12_12_28_00_transmog.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
DROP TABLE IF EXISTS `fake_items`;
CREATE TABLE `fake_items` (
`guid` int(11) NOT NULL,
`fakeEntry` int(11) NOT NULL,
PRIMARY KEY (`guid`)
);
8 changes: 8 additions & 0 deletions sql/updates/world/example_transmog.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
INSERT INTO `gossip_menu` VALUES (51000, 51000);

INSERT INTO npc_text (ID, text0_0, em0_1) VALUES
(51000, 'Put in the first slot of bag item, that you want to transmogrify. In the second slot, put item with perfect display.', 0);

DELETE FROM creature_template WHERE entry = '190001';
INSERT INTO creature_template (entry, modelid1, name, subname, IconName, gossip_menu_id, minlevel, maxlevel, Health_mod, Mana_mod, Armor_mod, faction_A, faction_H, npcflag, speed_walk, speed_run, scale, rank, dmg_multiplier, unit_class, unit_flags, type, type_flags, InhabitType, RegenHealth, flags_extra, ScriptName) VALUES
('190001', '15998', "Transmogrify Master", "", 'Speak', '50000', 71, 71, 1.56, 1.56, 1.56, 35, 35, 3, 1, 1.14286, 1.25, 1, 1, 1, 2, 7, 138936390, 3, 1, 2, 'npc_transmogrify');

0 comments on commit 5236618

Please sign in to comment.