1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00

feat: Add missing Cards to tk-dp-l (lucario) and tk-dp-m (manaphy) (#721)

This commit is contained in:
yugi-classic
2025-05-02 00:43:52 +02:00
committed by GitHub
parent aa07e67c80
commit b26236e78c
25 changed files with 990 additions and 37 deletions

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../DP trainer Kit (Manaphy)'
const card: Card = {
dexId: [158],
set: Set,
name: {
en: "Totodile"
},
illustrator: "Kouki Saitou",
rarity: "None",
category: "Pokemon",
stage: "Basic",
hp: 50,
types: [
"Water",
],
attacks: [
{
cost: [
"Colorless"
],
name: {
en: "Bite"
},
damage: 10
},
{
cost: [
"Water",
],
name: {
en: "Shining Fang"
},
effect: {
en: "If the Defending Pokémon already has any damage counters on it, this attack does 10 damage plus 10 more damage."
},
damage: "10+"
}
],
weaknesses: [
{
type: "Lightning",
value: "10+"
}
],
description: {
en: "It has the habit of biting anything with its developed jaws. Even its Trainer needs to be careful."
},
retreat: 1
}
export default card