1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00

64 lines
914 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Ariados",
},
illustrator: "Shin Nagasawa",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
hp: 110,
types: [
"Darkness",
],
evolveFrom: {
en: "Spinarak",
},
abilities: [
{
type: "Ability",
name: {
en: "Spider Net",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch 1 of your opponents Benched Evolution Pokémon with their Active Pokémon.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Poison Sting",
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 2,
}
export default card