1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

69 lines
956 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../DP Black Star Promos'
const card: Card = {
name: {
en: "Chimchar",
fr: "Ouisticram"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
390,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Ember",
fr: "Flammèche"
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to Chimchar.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie Fire attachée à Ouisticram."
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
description: {
fr: "Il escalade prestement les falaises escarpées et vit sur les sommets. Sa flamme s'éteint quand il dort."
}
}
export default card