skill-reward.ts 237 Bytes
Newer Older
Romain DELEAU's avatar
Romain DELEAU committed
1 2 3
import { Ressource } from "../../ressource/ressource";
import { Reward } from "../reward";

Romain DELEAU's avatar
Romain DELEAU committed
4 5 6 7 8 9
export class SkillReward extends Reward {

    constructor() {
        super('skill');
    }

Romain DELEAU's avatar
Romain DELEAU committed
10
    quantity: number = 1;
Romain DELEAU's avatar
Romain DELEAU committed
11 12
    skill!: Ressource;
}