From 7676751a5b42fb991ef708c78768ec68e8c9ca81 Mon Sep 17 00:00:00 2001 From: robert Date: Sun, 26 Apr 2026 17:12:29 -0400 Subject: [PATCH] Added weapon conditions --- src/App.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.js b/src/App.js index efe2c73..be46dd2 100644 --- a/src/App.js +++ b/src/App.js @@ -66,6 +66,11 @@ const CONDITIONS = [ { id: 'restrained', label: 'Restrained', emoji: 'πŸ•ΈοΈ' }, { id: 'stunned', label: 'Stunned', emoji: 'πŸ’₯' }, { id: 'unconscious', label: 'Unconscious', emoji: 'πŸ’€' }, + // Weapon Mastery effects + { id: 'grazed', label: 'Grazed', emoji: '🩹' }, + { id: 'sapped', label: 'Sapped', emoji: 'πŸ”¨' }, + { id: 'slowed', label: 'Slowed', emoji: '🐌' }, + { id: 'vexed', label: 'Vexed', emoji: '🎯' }, ]; // ============================================================================