Elin Modding Docs Doc
Loading...
Searching...
No Matches
ConHOT.cs
1using System;
2using System.Collections.Generic;
3
4// Token: 0x020002EE RID: 750
5public class ConHOT : Timebuff
6{
7 // Token: 0x06001778 RID: 6008 RVA: 0x0009893C File Offset: 0x00096B3C
8 public override void Tick()
9 {
10 Dice dice = Dice.Create("SpHOT", base.power, null, null);
11 this.owner.HealHP(dice.Roll(), HealSource.HOT);
12 base.Mod(-1, false);
13 }
14
15 // Token: 0x06001779 RID: 6009 RVA: 0x00098978 File Offset: 0x00096B78
16 public override void OnWriteNote(List<string> list)
17 {
18 Dice dice = Dice.Create("SpHOT", base.power, null, null);
19 list.Add("hintHOT".lang(dice.ToString(), null, null, null, null));
20 }
21}
Definition Dice.cs:7