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

108 lines
1.9 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-10",
localId: 10,
// Card informations
name: {
en: "Cacturne",
fr: "Cacturne",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 332,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw9/10/low.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw9/10/high.png",
fr: "https://assets.tcgdex.net/fr/bw/bw9/10/high.png",
},
},
evolveFrom: {
en: "Cacnea",
fr: "Cacnea",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 29,
name: "Suwama Chiaki"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Rapid-Fire Needles",
fr: "Salve d'Aiguilles",
},
text: {
en: "Does 30 damage to 1 of your Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 30 dégâts à 1 de vos Pokémon. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 60
},{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Payback",
fr: "Représailles",
},
text: {
en: "If your opponent has only 1 Prize card left, this attack does 60 more damage and discard an Energy attached to the Defending Pokémon.",
fr: "S'il ne reste qu'une seule carte Récompense à votre adversaire, cette attaque inflige 60 dégâts supplémentaires et vous défaussez une Énergie attachée au Pokémon Défenseur.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Plasma Freeze",
code: "bw9"
}
}
export default card