mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Deoxys'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Rocket's Raikou ex",
|
||
fr: "Raikou ex de Rocket",
|
||
de: "Rockets Raikou ex"
|
||
},
|
||
|
||
illustrator: "Ryo Ueda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
243,
|
||
],
|
||
|
||
hp: 100,
|
||
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thunderous Blow",
|
||
fr: "Coup tonitruant",
|
||
de: "Thunderderous Blow"
|
||
},
|
||
effect: {
|
||
en: "Does 40 damage plus 10 more damage for each Lightning Energy attached to Rocket's Raikou ex.",
|
||
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Raikou ex de Rocket.",
|
||
de: "Does 40 damage plus 10 more damage for each Energy attached to Rocket's Raikou ex."
|
||
},
|
||
damage: "40+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
abilities: [{
|
||
name: {
|
||
fr: "Explosion d'éclairs",
|
||
de: "Lightning Burst"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Lorsque vous attachez une carte Énergie de votre main à Raikou ex de Rocket, vous pouvez choisir 1 des Pokémon Défenseurs et l'échanger avec 1 des Pokémon de Banc de votre adversaire. Votre adversaire choisit le Pokémon de Banc à échanger. Ce pouvoir ne peut pas être utilisé si Raikou ex de Rocket est affecté par un État Spécial.",
|
||
de: "Whenever you attach a Energy card from your hand to Rocket's Raikou ex, you may choose 1 of the Defending Pokémon and Switch it with 1 of your opponent's Benched Pokémon. Your opponent choose the Benched Pokémon to switch. This power can't be used if Rocket's Raikou ex is affected by a Special Condition"
|
||
},
|
||
|
||
type: "Poke-POWER"
|
||
}]
|
||
}
|
||
|
||
export default card
|