1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09: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

82
data/EX/Deoxys/29.ts Normal file
View File

@ -0,0 +1,82 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Xatu",
},
illustrator: "Yuka Morii",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
178,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Natu",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Mirror Coat",
},
effect: {
en: "If Xatu is Burned or Poisoned by an opponent's attack (even if Xatu is Knocked Out), the Attacking Pokémon is now affected by the same Special Conditions (1 if there is only 1).",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dazzle Dance",
},
effect: {
en: "Each Defending Pokémon is now Confused.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psyloop",
},
effect: {
en: "Does 30 damage plus 30 more damage for each Trainer card your opponent has in play.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card