forked from Elfocrash/L2dotNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItemSlots.cs
More file actions
39 lines (38 loc) · 1.63 KB
/
Copy pathItemSlots.cs
File metadata and controls
39 lines (38 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Collections.Generic;
namespace L2dotNET.Models.Items
{
public class ItemSlots
{
public static Dictionary<string, int> ToDictionary()
{
Dictionary<string, int> slots = new Dictionary<string, int>
{
{"chest", ItemTemplate.SlotChest},
{"fullarmor", ItemTemplate.SlotFullArmor},
{"alldress", ItemTemplate.SlotAlldress},
{"head", ItemTemplate.SlotHead},
{"hair", ItemTemplate.SlotHair},
{"face", ItemTemplate.SlotFace},
{"dhair", ItemTemplate.SlotHairall},
{"underwear", ItemTemplate.SlotUnderwear},
{"back", ItemTemplate.SlotBack},
{"neck", ItemTemplate.SlotNeck},
{"legs", ItemTemplate.SlotLegs},
{"feet", ItemTemplate.SlotFeet},
{"gloves", ItemTemplate.SlotGloves},
{"chest,legs", ItemTemplate.SlotChest | ItemTemplate.SlotLegs},
{"rhand", ItemTemplate.SlotRHand},
{"lhand", ItemTemplate.SlotLHand},
{"lrhand", ItemTemplate.SlotLrHand},
{"rear,lear", ItemTemplate.SlotREar | ItemTemplate.SlotLEar},
{"rfinger,lfinger", ItemTemplate.SlotRFinger | ItemTemplate.SlotLFinger},
{"none", ItemTemplate.SlotNone},
{"wolf", ItemTemplate.SlotWolf},
{"hatchling", ItemTemplate.SlotHatchling},
{"strider", ItemTemplate.SlotStrider},
{"babypet", ItemTemplate.SlotBabypet}
};
return slots;
}
}
}