1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

75 lines
1.2 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Politoed",
fr: "Tarpaud",
},
illustrator: "Saya Tsuruta",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
186,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
fr: "Têtarte",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Roll Call",
fr: "Liste dAppel",
},
effect: {
en: "Search your deck for a Poliwag, a Poliwhirl, and a Poliwrath, and put them onto your Bench. Then, shuffle your deck.",
fr: "Cherchez un Ptitard, un Têtarte et un Tartard dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Jump",
fr: "Hyper Saut",
},
effect: {
en: "You may shuffle this Pokémon and all cards attached to it into your deck.",
fr: "Vous pouvez mélanger ce Pokémon et toutes les cartes qui lui sont attachées avec votre deck.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card