1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Araquanid",
fr: "Tarenbulle",
es: "Araquanid",
it: "Araquanid",
pt: "Araquanid",
de: "Aranestro"
},
rarity: "Rare",
category: "Pokemon",
hp: 120,
types: ["Grass"],
evolveFrom: {
en: "Dewpider",
fr: "Araqua",
es: "Dewpider",
it: "Dewpider",
pt: "Dewpider",
de: "Araqua"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "KIYOTAKA OSHIYAMA",
description: {
en: "It acts as a caretaker for Dewpider, putting them inside its bubble and letting them eat any leftover food."
},
attacks: [{
cost: ["Grass"],
name: {
en: "Bug Bite"
},
damage: 30
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
en: "Bubble Launch"
},
damage: 110,
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon."
}
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card