Skip to content

Instantly share code, notes, and snippets.

View ikeq's full-sized avatar
:shipit:
Life sucks

ikeq ikeq

:shipit:
Life sucks
View GitHub Profile
@ikeq
ikeq / skill.ts
Last active September 5, 2018 14:36
export interface Skill {
name: string;
description: string;
sacrifice: Sacrifice;
energy: Energy;
activationTime: Timing;
rechargeTime: Timing;
questReward: boolean;
}