mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
46 lines
617 B
TypeScript
46 lines
617 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Pyrobut V"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 210,
|
||
types: ["Fire"],
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
fr: "Coureur de Fond"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Si un Stade est en jeu, ce Pokémon n’a pas de Coût de Retraite."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Jambes Carmin"
|
||
},
|
||
|
||
damage: 140,
|
||
cost: ["Fire", "Fire", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Water",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card |