1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 07:32:11 +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

95 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "pl3-54",
localId: 54,
// Card informations
name: {
en: "Chatot G",
fr: "Pijako ",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 441,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/54/low",
fr: "https://assets.tcgdex.net/fr/pl/pl3/54/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/54/high",
fr: "https://assets.tcgdex.net/fr/pl/pl3/54/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
Tag.SP,
],
illustrator: "Yusuke Ishikawa",
abilities: [{
id: 659,
type: AbilityType.POKEPOWER,
name: {
en: "Disrupting Spy",
fr: "Espion dérangeant",
},
text: {
en: "Once during your turn, when you put Chatot G from your hand onto your Bench, you may look at the top 4 cards of your opponent's deck. Put them back on top of your opponent's deck in any order.",
fr: "Une seule fois lors de votre tour, lorsque vous placez Pijako de votre main sur votre Banc, vous pouvez regarder les 4 cartes du dessus du deck de votre adversaire. Replacez-les au-dessus du deck de votre adversaire dans n'importe quel ordre.",
}
}],
attacks: [{
name: {
en: "Search and Escape",
fr: "Rechercher et s'échapper",
},
text: {
en: "Search your deck for a Trainer card, show it to your opponent, and put it into your hand. Put Chatot G and all cards attached to it on top of your deck. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck une carte Dresseur, montrez-la à votre adversaire et placez-la dans votre main. Placez Pijako ainsi que toutes les cartes qui lui sont attachées au-dessus de votre deck. Ensuite, mélangez votre deck.",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card