mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/XY/Roaring Skies/63.ts
Normal file
70
data/XY/Roaring Skies/63.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Roaring Skies'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Reshiram",
|
||||
fr: "Reshiram",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
643,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Dragon",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Turboblaze",
|
||||
fr: "TurboBrasier",
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), if this Pokémon is your Active Pokémon, you may attach a Fire Energy card from your hand to 1 of your Dragon Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est votre Pokémon Actif, vous pouvez attacher une carte Énergie Fire de votre main à l'un de vos Pokémon Dragon.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fire",
|
||||
"Fire",
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bright Wing",
|
||||
fr: "Ailes Lumineuses",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard a Fire Energy attached to this Pokémon.",
|
||||
fr: "Défaussez une Énergie Fire attachée à ce Pokémon.",
|
||||
},
|
||||
damage: 110,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fairy",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user