1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00

66 lines
893 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Ariados",
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
168,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Spinarak",
},
stage: "Stage1",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Sticky",
},
effect: {
en: "The Retreat Cost for each player's Pokémon (excluding Ariados) is Colorless more.",
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Offensive Needle",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned. If tails, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
}
export default card