forked from External/mage
updated how Saga abilities are added
still need to fix sacrificing works (#4875)
This commit is contained in:
parent
4ac6e7d86c
commit
f2835685e9
11 changed files with 147 additions and 52 deletions
|
|
@ -53,4 +53,16 @@ public enum SagaChapter {
|
|||
return number;
|
||||
}
|
||||
|
||||
public static SagaChapter getChapter(int number) {
|
||||
switch (number) {
|
||||
case 1:
|
||||
return CHAPTER_I;
|
||||
case 2:
|
||||
return CHAPTER_II;
|
||||
case 3:
|
||||
return CHAPTER_III;
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue