1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

95 lines
1.8 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: "dp4-49",
localId: 49,
// Card informations
name: {
en: "Porygon2",
fr: "Porygon2",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 233,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/49/low",
fr: "https://assets.tcgdex.net/fr/dp/dp4/49/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/49/high",
fr: "https://assets.tcgdex.net/fr/dp/dp4/49/high",
},
},
evolveFrom: {
en: "Porygon",
fr: "Porygon",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kent Kanetsuna",
abilities: [{
id: 869,
type: AbilityType.POKEPOWER,
name: {
en: "Download",
fr: "Télécharge",
},
text: {
en: "Once during your turn (before your attack), you may discard a Supporter card from your hand and use the effect of that card as the effect of this power. This power can't be used if Porygon2 is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez défausser une carte Supporter de votre main et utiliser l'effet de cette carte comme l'effet de ce pouvoir. Ce pouvoir ne peut pas être utilisé si Porygon2 est affecté par un État Spécial.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Speed Attack",
fr: "Attaque vitesse",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
retreat: 2,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card