1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-19 06:49:53 +00:00

62 lines
863 B
TypeScript

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