mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 23:02:09 +00:00
38 lines
528 B
TypeScript
38 lines
528 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Reshiram"
|
||
},
|
||
|
||
illustrator: "PLANETA Tsuji",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Fire"],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Brasier Magnifique"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Ce Pokémon s’inflige aussi 60 dégâts."
|
||
},
|
||
|
||
damage: 270,
|
||
cost: ["Fire", "Lightning", "Darkness"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3
|
||
}
|
||
|
||
export default card |