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

75 lines
1.1 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'
import Set from '../Diamond & Pearl'
const card: Card = {
name: {
en: "Infernape",
fr: "Simiabraz",
},
illustrator: "Nakaoka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
392,
],
hp: 100,
types: [
"Fire",
],
evolveFrom: {
en: "Monferno",
fr: "Chimpenfeu",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Meteor Punch",
fr: "Poing-météore",
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Cette attaque inflige 30 dégâts multipliés par le nombre de faces.",
},
damage: "30×",
},
{
cost: [
"Fire",
"Fire",
],
name: {
en: "Flare Blitz",
fr: "Boutefeu",
},
effect: {
en: "Discard all Fire Energy attached to Infernape.",
fr: "Défaussez toutes les Énergies Fire attachées à Simiabraz.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "+30"
},
],
}
export default card