14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
import Effect from './effect.js';
|
|
|
|
class Card {
|
|
constructor() {
|
|
/** @type {string} */
|
|
this.name;
|
|
/** @type {string} */
|
|
this.description;
|
|
/** @type {Effect} */
|
|
this.effect;
|
|
}
|
|
}
|
|
|
|
export default Card;
|