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

77
data/EX/Deoxys/2.ts Normal file
View File

@ -0,0 +1,77 @@
import { Card } from '../../../interfaces'
import Set from '../Deoxys'
const card: Card = {
name: {
en: "Beautifly",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
267,
],
hp: 100,
types: [
"Grass",
],
evolveFrom: {
en: "Silcoon",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Hunch",
},
effect: {
en: "As long as Beautifly's remaining HP is 40 or less, Beautifly does 40 more damage to the Defending Pokémon (before applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Luring Antenna",
},
effect: {
en: "Before doing damage, you may choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. If you do, this attack does 20 damage to the new Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.",
},
damage: 20,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Cutting Wind",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card