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:
62
data/EX/Dragon Frontiers/53.ts
Normal file
62
data/EX/Dragon Frontiers/53.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragon Frontiers'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Ledyba δ",
|
||||
},
|
||||
illustrator: "Kyoko Umemoto",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
165,
|
||||
],
|
||||
hp: 40,
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
],
|
||||
name: {
|
||||
en: "Supersonic",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user