Home Reference Source Repository

app/entities/TheTreasure.js

import Item from './Item.js';

export default class TheTreasure extends Item {
    getFriendlyDescription() {
        return 'Bring this to the entrance to win';
    }
}