1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Call of Legends'
const card: Card = {
name: {
en: "Raikou",
fr: "Raikou",
},
illustrator: "Noriko Hotta",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
243,
],
hp: 90,
types: [
"Lightning",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Extreme Speed",
fr: "Vitesse extrême",
},
effect: {
en: "Raikou's Retreat Cost is Colorless less for each Lightning Energy attached to Raikou.",
fr: "Le Coût de retraite de Raikou est Colorless de moins pour chaque Énergie Lightning attachée à Raikou",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Raging Thunder",
fr: "Tonnerre déchaîné",
},
effect: {
en: "Does 20 damage to 1 of your Pokémon, and don't apply Weakness and Resistance to this damage.",
fr: "Inflige 20 dégâts à 1 de vos Pokémon. Nappliquez ni la Faiblesse ni la Résistance à ces dégâts.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card