1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +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

108
cards/ex/ex1/19.ts Normal file
View File

@@ -0,0 +1,108 @@
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: "ex1-19",
localId: 19,
// Card informations
name: {
en: "Pelipper",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 279,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex1/19/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex1/19/high.png",
},
},
evolveFrom: {
en: "Wingull",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Stockpile",
},
text: {
en: "During your next turn, Spit Up's base damage is 70 instead of 30, and Swallow's base damage is 60 instead of 20.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Spit Up",
},
damage: 30
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Swallow",
},
text: {
en: "After your attack, remove from Pelipper the number of damage counters equal to the damage you did to the Defending Pokémon. If Pelipper has fewer damage counters than that, remove all of them.",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-30"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Ruby & Sapphire",
code: "ex1"
}
}
export default card