1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

111
cards/ex/ex10/107.ts Normal file
View File

@ -0,0 +1,111 @@
import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "ex10-107",
localId: 107,
// Card informations
name: {
en: "Politoed ex",
},
hp: 150,
type: [
Type.WATER,
],
dexId: 186,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex10/107/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex10/107/high.png",
},
},
evolveFrom: {
en: "Poliwhirl",
},
tags: [
Tag.EX,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Upward Lick",
},
text: {
en: "Choose 1 of your opponent's Pokémon. This attack does 30 damage to that Pokémon. If that Pokémon is a Stage 2 Evolved Pokémon, this attack does 50 damage instead. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Punch and Run",
},
text: {
en: "Switch Politoed ex with 1 of your Benched Pokémon.",
},
damage: 40
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Swallow Up",
},
text: {
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Politoed ex. If the Defending Pokémon has fewer remaining HP than Politoed ex's, this attack does 120 damage instead.",
},
damage: 70
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Unseen Forces",
code: "ex10"
}
}
export default card