1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

68 lines
957 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Team Rocket'
const card: Card = {
name: {
en: "Dark Wartortle",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
8,
],
hp: 60,
types: [
"Water",
],
evolveFrom: {
en: "Squirtle",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Doubleslap",
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Mirror Shell",
},
effect: {
en: "If an attack does damage to Dark Wartortle during your opponent's next turn (even if Dark Wartortle is Knocked Out), Dark Wartortle attacks the Defending Pokémon for an equal amount of damage.",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card