Add some sound functionality

This commit is contained in:
2021-11-05 14:28:01 +01:00
parent dd066f0aa3
commit c5a4167846
32 changed files with 187 additions and 30 deletions

10
src/game/items/cup.js Normal file
View File

@@ -0,0 +1,10 @@
import ItemBuilder from "../../engine/builders/item";
import Item from "../../engine/item";
export default new ItemBuilder()
.withID("cup")
.withName("a cup")
.withDescription("A standard coffee cup")
.isTakeable(true)
.isUsable(false)
.create();