mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 20:02:15 +00:00
108 lines
1.7 KiB
TypeScript
108 lines
1.7 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "ecard3-25",
|
||
localId: 25,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Politoed",
|
||
},
|
||
|
||
hp: 110,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 186,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/ecard/ecard3/25/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/ecard/ecard3/25/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Poliwhirl",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Atsuko Nishida",
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Sudden Growth",
|
||
},
|
||
text: {
|
||
en: "Attach any number of basic Energy cards from your hand to Politoed.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Frog Hop",
|
||
},
|
||
text: {
|
||
en: "Flip a coin. If heads, this attack does 30 damage plus 20 more damage.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.WATER,
|
||
Type.WATER,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Energy Splash",
|
||
},
|
||
text: {
|
||
en: "Move 2 Energy cards attached to Politoed to 1 or 2 of your Benched Pokémon. (You may put both on the same Pokémon, or 1 each on 2 different Pokémon.) If you have no Benched Pokémon, ignore this effect.",
|
||
},
|
||
damage: 70
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Skyridge",
|
||
code: "ecard3"
|
||
}
|
||
}
|
||
|
||
export default card
|