1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00

62 lines
705 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Totodile",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
158,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
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"
},
],
}
export default card