Last active
September 5, 2018 14:36
-
-
Save ikeq/59dd307bb56ef7919cc192aa7b547e27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export interface Skill { | |
| name: string; | |
| description: string; | |
| sacrifice: Sacrifice; | |
| energy: Energy; | |
| activationTime: Timing; | |
| rechargeTime: Timing; | |
| questReward: boolean; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment