64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine;
|
|
|
|
namespace RecRoom.Consumable
|
|
{
|
|
// Token: 0x02002156 RID: 8534
|
|
[Token(Token = "0x2002156")]
|
|
[StructLayout(3)]
|
|
public class HeadPotionConsumableItem : ConsumableItem
|
|
{
|
|
// Token: 0x17002741 RID: 10049
|
|
// (get) Token: 0x0600EB2B RID: 60203 RVA: 0x0037C0A0 File Offset: 0x0037A2A0
|
|
[Token(Token = "0x17002741")]
|
|
public HeadPotionConsumableItem.HAIOIEHFIOH BPOJHOFMKOO
|
|
{
|
|
[Token(Token = "0x600EB2B")]
|
|
[Address(RVA = "0x4F8170", Offset = "0x4F6B70", VA = "0x1804F8170")]
|
|
get
|
|
{
|
|
return this.potionType;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600EB2C RID: 60204 RVA: 0x0037C0B4 File Offset: 0x0037A2B4
|
|
[Token(Token = "0x600EB2C")]
|
|
[Address(RVA = "0x17B04F0", Offset = "0x17AEEF0", VA = "0x1817B04F0", Slot = "5")]
|
|
public override ConsumableInfo ToConsumableInfo()
|
|
{
|
|
HeadPotionConsumableInfo headPotionConsumableInfo = new HeadPotionConsumableInfo();
|
|
HeadPotionConsumableItem.HAIOIEHFIOH haioiehfioh = this.potionType;
|
|
headPotionConsumableInfo.PotionType = haioiehfioh;
|
|
throw new NullReferenceException();
|
|
}
|
|
|
|
// Token: 0x0600EB2D RID: 60205 RVA: 0x0037C0DC File Offset: 0x0037A2DC
|
|
[Token(Token = "0x600EB2D")]
|
|
[Address(RVA = "0x179B170", Offset = "0x1799B70", VA = "0x18179B170")]
|
|
public HeadPotionConsumableItem()
|
|
{
|
|
}
|
|
|
|
// Token: 0x04009BB6 RID: 39862
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x4009BB6")]
|
|
[SerializeField]
|
|
[Header("Head potion")]
|
|
protected HeadPotionConsumableItem.HAIOIEHFIOH potionType;
|
|
|
|
// Token: 0x02002157 RID: 8535
|
|
[Token(Token = "0x2002157")]
|
|
public enum HAIOIEHFIOH
|
|
{
|
|
// Token: 0x04009BB8 RID: 39864
|
|
[Token(Token = "0x4009BB8")]
|
|
INVALID,
|
|
// Token: 0x04009BB9 RID: 39865
|
|
[Token(Token = "0x4009BB9")]
|
|
DKMode
|
|
}
|
|
}
|
|
}
|