1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

75
data/XY/Evolutions/25.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../Evolutions'
const card: Card = {
name: {
en: "Poliwrath",
fr: "Tartard",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
62,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Poliwhirl",
fr: "Têtarte",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Dashing Punch",
fr: "Poing Épique",
},
effect: {
en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 50 more damage.",
fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 50 dégâts supplémentaires.",
},
damage: 50,
},
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Whirlpool",
fr: "Siphon",
},
effect: {
en: "Discard an Energy attached to your opponent's Active Pokémon.",
fr: "Défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card