Revision 6281,
828 bytes
checked in by mijoliim, 6 years ago
(diff) |
Wooo versionhallinta
|
Line | |
---|
1 | using System; |
---|
2 | using System.Collections.Generic; |
---|
3 | using System.Linq; |
---|
4 | using System.Text; |
---|
5 | using Jypeli; |
---|
6 | |
---|
7 | public static class SkillList |
---|
8 | { |
---|
9 | |
---|
10 | } |
---|
11 | |
---|
12 | public class SkillBase |
---|
13 | { |
---|
14 | public string Name { get; set; } |
---|
15 | public SkillType SkillType { get; set; } |
---|
16 | public UsableOn UsableOn { get; set; } |
---|
17 | public UseType UseType { get; set; } |
---|
18 | public int LearnAtLevel { get; set; } |
---|
19 | |
---|
20 | public int BaseDamage { get; set; } |
---|
21 | public int Cost { get; set; } |
---|
22 | public int HitPercent = 100; |
---|
23 | |
---|
24 | public Action Animation { get; set; } |
---|
25 | public Action Special { get; set; } |
---|
26 | } |
---|
27 | |
---|
28 | public enum SkillType |
---|
29 | { |
---|
30 | Damage, |
---|
31 | Heal, |
---|
32 | Buff, |
---|
33 | Debuff, |
---|
34 | Instadeath, |
---|
35 | } |
---|
36 | |
---|
37 | public enum UsableOn |
---|
38 | { |
---|
39 | All, |
---|
40 | Self, |
---|
41 | Ally, |
---|
42 | Enemy, |
---|
43 | } |
---|
44 | |
---|
45 | public enum UseType |
---|
46 | { |
---|
47 | Single, |
---|
48 | Multiple, |
---|
49 | Both, |
---|
50 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.