import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Latias δ", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 380, ], hp: 70, types: [ "Fire", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Dual Aura", }, effect: { en: "As long as you have Latios or Latios ex in play, each player's Evolved Pokémon (excluding Pokémon-ex) can't use any Poké-Bodies.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Spearhead", }, effect: { en: "Draw a card.", }, }, { cost: [ "Fire", "Colorless", "Colorless", ], name: { en: "Dragon Claw", }, damage: 40, }, ], weaknesses: [ { type: "Colorless", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-30" }, { type: "Fighting", value: "-30" }, ], } export default card