mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Finished Complete Rework of the Database
This commit is contained in:
70
data/EX/Holon Phantoms/13.ts
Normal file
70
data/EX/Holon Phantoms/13.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Holon Phantoms'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Omastar δ",
|
||||
},
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
139,
|
||||
],
|
||||
hp: 110,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Omanyte",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Bind",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Vengeful Spikes",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 30 damage plus 10 more damage for each Omanyte, Omastar, Kabuto, Kabutops, and Kabutops ex in your discard pile. You can't add more than 60 damage in this way.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user