Server.Items.GasTrap.GetBaseID C# (CSharp) Method

GetBaseID() public static method

public static GetBaseID ( GasTrapType type ) : int
type GasTrapType
return int
		public static int GetBaseID( GasTrapType type )
		{
			switch ( type )
			{
				case GasTrapType.NorthWall: return 0x113C;
				case GasTrapType.WestWall: return 0x1147;
				case GasTrapType.Floor: return 0x11A8;
			}

			return 0;
		}