1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

77 lines
1.3 KiB
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 '../Evolutions'
const card: Card = {
name: {
en: "Poliwhirl",
fr: "Têtarte",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
61,
],
hp: 80,
types: [
"Water",
],
evolveFrom: {
en: "Poliwag",
fr: "Ptitard",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Amnesia",
fr: "Amnésie",
},
effect: {
en: "Choose 1 of your opponent's Active Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Double Slap",
fr: "Torgnoles",
},
effect: {
en: "Flip 2 coins. This attack does 50 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card