Skip to content

Commit

Permalink
feat: macabre modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Golbolco authored Dec 20, 2023
1 parent 2604f8f commit 28636c3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Games/types/Mafia/roles/cards/StartWithSyringe.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const Card = require("../../Card");

module.exports = class StartWithSyringe extends Card {
constructor(role) {
super(role);

this.startItems = ["Syringe"];
}
};
5 changes: 5 additions & 0 deletions data/modifiers.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ const modifierData = {
description: "Starts with a crystal ball.",
allowDuplicate: true,
},
Macabre: {
internal: ["StartWithSyringe"],
description: "Starts with a syringe.",
allowDuplicate: true,
},
Exposed: {
internal: ["PublicReveal"],
description: "Starts revealed to everyone.",
Expand Down

0 comments on commit 28636c3

Please sign in to comment.