1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

104 lines
2.0 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 '../../../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: "bw9-56",
localId: 56,
// Card informations
name: {
en: "Cofagrigus",
fr: "Tutankafer",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 563,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw9/56/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/56/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw9/56/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/56/high.png",
},
},
evolveFrom: {
en: "Yamask",
fr: "Tutafeh",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 1424,
type: AbilityType.TALENT,
name: {
en: "Six Feet Under",
fr: "Pas de Quartier",
},
text: {
en: "Once during your turn (before your attack), you may Knock Out this Pokémon. If you do, put 3 damage counters on your opponent's Pokémon in any way you like.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez mettre K.O. ce Pokémon. Dans ce cas, placez 3 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Slap of Misfortune",
fr: "Revers de Fortune",
},
text: {
en: "Whenever your opponent flips a coin during his or her next turn, treat it as tails.",
fr: "Chaque fois que votre adversaire lance une pièce pendant son prochain tour, considérez que c'est pile.",
},
damage: 70
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Plasma Freeze",
code: "bw9"
}
}
export default card