mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Space-Time Smackdown (#648)
This commit is contained in:
48
data/Pokémon TCG Pocket/Space-Time Smackdown/110.ts
Normal file
48
data/Pokémon TCG Pocket/Space-Time Smackdown/110.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Space-Time Smackdown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Darkrai ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Yamashita",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Nightmare Aura"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Whenever you attach a <span class=\"energy-text energy-text--type-darkness\"></span> Energy from your Energy Zone to this Pokémon, do 20 damage to your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Dark Prism"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Darkness", "Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user