62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine;
|
|
|
|
namespace RecRoom.Consumable
|
|
{
|
|
// Token: 0x02002346 RID: 9030
|
|
[Token(Token = "0x2002346")]
|
|
public class HeadPotionConsumableItem : ConsumableItem
|
|
{
|
|
// Token: 0x170024E2 RID: 9442
|
|
// (get) Token: 0x0600E748 RID: 59208 RVA: 0x00358384 File Offset: 0x00356584
|
|
[Token(Token = "0x170024E2")]
|
|
public HeadPotionConsumableItem.HAIOIEHFIOH BPOJHOFMKOO
|
|
{
|
|
[Token(Token = "0x600E748")]
|
|
[Address(RVA = "0x3FA190", Offset = "0x3F8F90", VA = "0x1803FA190")]
|
|
get
|
|
{
|
|
return this.potionType;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600E749 RID: 59209 RVA: 0x00358398 File Offset: 0x00356598
|
|
[Token(Token = "0x600E749")]
|
|
[Address(RVA = "0x139CBD0", Offset = "0x139B9D0", VA = "0x18139CBD0", Slot = "5")]
|
|
public override ConsumableInfo ToConsumableInfo()
|
|
{
|
|
HeadPotionConsumableInfo headPotionConsumableInfo = new HeadPotionConsumableInfo();
|
|
HeadPotionConsumableItem.HAIOIEHFIOH haioiehfioh = this.potionType;
|
|
headPotionConsumableInfo.PotionType = haioiehfioh;
|
|
throw new NullReferenceException();
|
|
}
|
|
|
|
// Token: 0x0600E74A RID: 59210 RVA: 0x003583C0 File Offset: 0x003565C0
|
|
[Token(Token = "0x600E74A")]
|
|
[Address(RVA = "0x11F6DE0", Offset = "0x11F5BE0", VA = "0x1811F6DE0")]
|
|
public HeadPotionConsumableItem()
|
|
{
|
|
}
|
|
|
|
// Token: 0x040098C5 RID: 39109
|
|
[FieldOffset(Offset = "0x58")]
|
|
[Token(Token = "0x40098C5")]
|
|
[SerializeField]
|
|
[Header("Head potion")]
|
|
protected HeadPotionConsumableItem.HAIOIEHFIOH potionType;
|
|
|
|
// Token: 0x02002347 RID: 9031
|
|
[Token(Token = "0x2002347")]
|
|
public enum HAIOIEHFIOH
|
|
{
|
|
// Token: 0x040098C7 RID: 39111
|
|
[Token(Token = "0x40098C7")]
|
|
INVALID,
|
|
// Token: 0x040098C8 RID: 39112
|
|
[Token(Token = "0x40098C8")]
|
|
DKMode
|
|
}
|
|
}
|
|
}
|