mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
51
data/Sword & Shield/Fusion Strike/120.ts
Normal file
51
data/Sword & Shield/Fusion Strike/120.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Deoxys",
|
||||
fr: "Deoxys",
|
||||
es: "Deoxys",
|
||||
it: "Deoxys",
|
||||
pt: "Deoxys",
|
||||
de: "Deoxys"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
regulationMark: "E",
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
description: {
|
||||
en: "DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Photon Boost"
|
||||
},
|
||||
|
||||
damage: "80+",
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Fusion Strike Energy attached, this attack does 80 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: true,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user