mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
56
data/Pokémon TCG Pocket/Space-Time Smackdown/072.ts
Normal file
56
data/Pokémon TCG Pocket/Space-Time Smackdown/072.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dusknoir"
|
||||
},
|
||||
|
||||
illustrator: "Suwama Chiaki",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dusclops"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "At the bidding of transmissions from the spirit<br />world, it steals people and Pokémon away.<br />No one knows whether it has a will of its own."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Shadow Void"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As often as you like during your turn, you may choose 1 of your Pokémon that has damage on it, and move all of its damage to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Devour Soul"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Psychic", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user