mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
56
data/Sword & Shield/Fusion Strike/44.ts
Normal file
56
data/Sword & Shield/Fusion Strike/44.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cinderace V",
|
||||
fr: "Pyrobut V",
|
||||
es: "Cinderace V",
|
||||
it: "Cinderace V",
|
||||
pt: "Cinderace V",
|
||||
de: "Liberlo V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
retreat: 2,
|
||||
regulationMark: "E",
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "All-Out Shot"
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can't attack."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user