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

103 lines
2.2 KiB
TypeScript

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: "pl1-67",
localId: 67,
// Card informations
name: {
en: "Cacnea",
fr: "Cacnea",
},
hp: 50,
type: [
Type.GRASS,
],
dexId: 331,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl1/67/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/67/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl1/67/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl1/67/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 7,
name: "Sumiyoshi Kizuki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sneaky Attack",
fr: "Coup Bas",
},
text: {
en: "If Cacnea has any Darkness Energy attached to it, this attack does 10 damage plus 10 more damage.",
fr: "Si Cacnea possède de l'Énergie Darkness, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires.",
},
damage: 10
},{
cost: [
Type.GRASS
],
name: {
en: "Shoot Needle",
fr: "Coup de dard",
},
text: {
en: "Flip 2 coins. For each heads, choose 1 of your opponent's Pokémon and this attack does 10 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.) (You can choose the same Pokémon more than once, but you can't do more than 10 damage to that Pokémon in this way.)",
fr: "Lancez 2 pièces. Pour chaque face, choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 10 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.) (Vous pouvez choisir le même Pokémon plus d'une fois mais vous ne pouvez pas lui infliger plus de 10 dégâts de cette façon).",
},
}],
weaknesses: [{
type: Type.FIRE,
value: "+10"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Platinum",
code: "pl1"
}
}
export default card