mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
55
data/Sword & Shield/Fusion Strike/170.ts
Normal file
55
data/Sword & Shield/Fusion Strike/170.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Zorua",
|
||||
fr: "Zorua",
|
||||
es: "Zorua",
|
||||
it: "Zorua",
|
||||
pt: "Zorua",
|
||||
de: "Zorua"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "nagimiso",
|
||||
|
||||
description: {
|
||||
en: "If a normally talkative child suddenly stops talking, it may have been replaced by Zorua."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user