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

102 lines
1.9 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-14",
localId: 14,
// Card informations
name: {
en: "Butterfree",
fr: "Papilusion",
},
hp: 120,
type: [
Type.GRASS,
],
dexId: 12,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/14/low",
fr: "https://assets.tcgdex.net/fr/dp/dp4/14/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/14/high",
fr: "https://assets.tcgdex.net/fr/dp/dp4/14/high",
},
},
evolveFrom: {
en: "Metapod",
fr: "Chrysacier",
},
tags: [
Tag.STAGE2,
],
illustrator: "Sumiyoshi Kizuki",
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Parallel Drain",
fr: "Tuyau parallèle",
},
text: {
en: "After your attack, remove from 1 of your Pokémon the number of damage counters equal to the damage you did to the Defending Pokémon.",
fr: "Après votre attaque, retirez à 1 de vos Pokémon autant de marqueurs de dégât que vous avez infligé de dégâts au Pokémon Défenseur.",
},
damage: 30
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Dozing Scales",
fr: "Écailles ensommeillées",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep. If tails, the Defending Pokémon is now Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi. Si c'est pile, le Pokémon Défenseur est maintenant Empoisonné.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "+30"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card