mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
Added shining fates (#24)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
46
data/Sword & Shield/Shining Fates/18.ts
Normal file
46
data/Sword & Shield/Shining Fates/18.ts
Normal file
@ -0,0 +1,46 @@
|
||||
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
|
Reference in New Issue
Block a user