1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Skyridge'
const card: Card = {
name: {
en: "Omanyte",
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
138,
],
hp: 60,
types: [
"Water",
],
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Water of Evolution",
},
effect: {
en: "Put an Omastar from your hand onto Omanyte. This counts as evolving Omanyte.",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Drag Off",
},
effect: {
en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with the Defending Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card