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

72 lines
969 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Wooper",
fr: "Axoloto",
},
illustrator: "match",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
194,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tail Whip",
fr: "Mouvemendkeu",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon can't attack during your opponent's next turn.",
fr: "Lancez une pièce. Si cest face, le Pokémon Défenseur ne peut pas attaquer durant le prochain tour de votre adversaire.",
},
},
{
cost: [
"Water",
],
name: {
en: "Watering",
fr: "Arrosage",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
}
export default card