From 63790a056c09611de9be71c90932bb7cc8c10cb6 Mon Sep 17 00:00:00 2001 From: yugi-classic <113375742+yugi-classic@users.noreply.github.com> Date: Wed, 30 Apr 2025 09:45:36 +0200 Subject: [PATCH] feat: Add 1 Missing card in tk-dp-l (#714) --- .../DP trainer Kit (Lucario)/1.ts | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 data/Trainer kits/DP trainer Kit (Lucario)/1.ts diff --git a/data/Trainer kits/DP trainer Kit (Lucario)/1.ts b/data/Trainer kits/DP trainer Kit (Lucario)/1.ts new file mode 100644 index 000000000..df001d193 --- /dev/null +++ b/data/Trainer kits/DP trainer Kit (Lucario)/1.ts @@ -0,0 +1,52 @@ +import { Card } from '../../../interfaces' +import Set from '../DP trainer Kit (Lucario)' + +const card: Card = { + dexId: [74], + set: Set, + + name: { + en: "Geodude" + }, + + illustrator: "Ken Sudimori", + rarity: "None", + category: "Pokemon", + + hp: 60, + + types: [ + "Fighting", + ], + + attacks: [{ + + cost: [ + "Fighting", + ], + + name: { + en: "Stone Throw" + }, + + effect: { + en: "Choose 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)" + } + }], + + weaknesses: [ + { + type: "Grass", + value: "×2" + }, + ], + + description: { + en: "Many live on mountain trails and remain half buried while keeping an eye on climbers" + }, + + retreat: 2, + +} + +export default card