1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

109 lines
2.4 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: "pl1-4",
localId: 4,
// Card informations
name: {
en: "Delcatty",
fr: "Delcatty",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 301,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/4/low",
fr: "https://assets.tcgdex.net/fr/pl/pl1/4/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/4/high",
fr: "https://assets.tcgdex.net/fr/pl/pl1/4/high",
},
},
evolveFrom: {
en: "Skitty",
fr: "Skitty",
},
tags: [
Tag.STAGE1,
],
illustrator: "Mitsuhiro Arita",
abilities: [{
id: 106,
type: AbilityType.POKEPOWER,
name: {
en: "Power Circulation",
fr: "Circulation de puissance",
},
text: {
en: "Once during your turn (before your attack), you may search your discard pile for up to 2 basic Energy cards, show them to your opponent, and put them on top of your deck in any order. If you do, put 2 damage counters on Delcatty. This power can't be used if Delcatty is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez choisir dans votre pile de défausse jusqu'à 2 cartes Énergie de base. Montrez-les à votre adversaire et placez-les au dessus de votre deck dans n'importe quel ordre. Placez alors 2 marqueurs de dégât sur Delcatty. Ce pouvoir ne peut pas être utilisé si Delcatty est affecté par un État Spécial.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Power Heal",
fr: "Pouvoir guérissant",
},
text: {
en: "Does 10 damage plus 10 more damage for each damage counter on Delcatty. Then, remove 2 damage counters from Delcatty.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Delcatty. Ensuite, retirez à Delcatty 2 marqueurs de dégât.",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rear Kick",
fr: "Pouvoir guérisseur",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card