1/*
2 *
3 *  Copyright (C) 2006  Alun Bestor/The Exult Team
4 *
5 *  This program is free software; you can redistribute it and/or modify
6 *  it under the terms of the GNU General Public License as published by
7 *  the Free Software Foundation; either version 2 of the License, or
8 *  (at your option) any later version.
9 *
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 *  GNU General Public License for more details.
14 *
15 *  You should have received a copy of the GNU General Public License
16 *  along with this program; if not, write to the Free Software
17 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 *
19 *
20 *	This header file contains the shape numbers for all of the new
21 *	shapes installed by the Keyring mod. It is unsorted by shape #.
22 *
23 *	Author: Marzo Junior/Alun Bestor
24 *	Last Modified: 2006-03-19
25 */
26
27const int SHAPE_NEW_BODIES				= 1099;	//0x44B
28const int SHAPE_KEYRING					= 1100;	//0x44C
29const int SHAPE_BARRIER					= 1101;	//0x44D
30const int SHAPE_JOURNAL					= 1102;	//0x44E
31const int SHAPE_LAURIANNA_MONSTER		= 1103;	//0x44F
32const int SHAPE_BLACKROCK_POTION		= 1104;	//0x450
33const int SHAPE_GEM_OF_DISPELLING		= 1105;	//0x451
34const int SHAPE_SPIDER_EGG				= 1106;	//0x452
35const int SHAPE_LAURIANNA				= 1107;	//0x453
36const int SHAPE_LAURIANNA_ROOTED		= 1108;	//0x454
37const int SHAPE_SPELL_SPELLBOOK			= 1109;	//0x455
38const int SHAPE_IOLOS_LUTE				= 1110;	//0x456
39const int SHAPE_SPELL_AMULET			= 1111;	//0x457
40const int SHAPE_JULIAS_HAMMER			= 1112;	//0x458
41const int SHAPE_ORB_MOONGATE_NW_SE		= 1113;	//0x459
42const int SHAPE_ORB_MOONGATE_NE_SW		= 1114;	//0x45A
43const int SHAPE_ETERNAL_FLAME			= 1115;	//0x45B
44const int SHAPE_FLAME_OF_INFINITY		= 1116;	//0x45C
45const int SHAPE_FLAME_OF_SINGULARITY	= 1117;	//0x45D
46const int SHAPE_DEATH_BOLT_NEW			= 1118;	//0x45E
47const int SHAPE_CODEX_BARRIER			= 1119;	//0x45F
48const int SHAPE_STAIRS_DOWN				= 1120;	//0x460
49const int SHAPE_FAKE_WATER				= 1121;	//0x461
50const int SHAPE_MARIAH					= 1122;	//0x462
51const int SHAPE_SHRINE					= 1123;	//0x463
52const int SHAPE_ITEM_OF_PRINCIPLE		= 1124; //0x464
53const int SHAPE_CODEX_CARPET			= 1125;	//0x465
54const int SHAPE_LB_SCEPTER				= 1126;	//0x466
55const int SHAPE_LB_CROWN				= 1127;	//0x467
56const int SHAPE_LB_AMULET				= 1128;	//0x468
57const int SHAPE_MAGIC_CARPET			= 1129;	//0x469
58const int SHAPE_ROLLED_CARPET			= 1130;	//0x46A
59const int SHAPE_CARPET_ROLLER			= 1131;	//0x46B
60const int SHAPE_PORTABLE_HOLE			= 1132;	//0x46C
61
62//Added to SHAPE_STONE_CHIPS
63//added for Rune of Honor quest
64const int FRAME_SLATE					= 5;
65
66//Added to SHAPE_RUNE
67//added for Rune of Honor quest
68const int FRAME_RUNE_REPLICA			= 8;
69
70//Added to SHAPE_KITCHEN_ITEM
71const int FRAME_CHURN_2					= 16;
72const int FRAME_CHURN_3					= 17;
73const int FRAME_PITCHER_MILK			= 18;
74
75//Added to SHAPE_DOUGH
76//flat dough + apples = pie dough (when baked in oven, this creates a pie)
77const int	FRAME_DOUGH_PIE				= 3;
78//flour + egg = cake dough (when baked in oven, this creates a cake)
79const int	FRAME_DOUGH_CAKE			= 4;
80
81//Added to SHAPE_BUCKET
82const int	FRAME_BUCKET_MILK			= 7;
83