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

81
data/EX/Deoxys/1.ts Normal file
View File

@ -0,0 +1,81 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Altaria",
},
illustrator: "Kyoko Umemoto",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
334,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Swablu",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Safeguard",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Altaria by your opponent's Pokémon-ex.",
},
},
],
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Double Wing Attack",
},
effect: {
en: "Does 20 damage to each Defending Pokémon.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Dive",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fightning",
value: "-30"
},
],
}
export default card