1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

83 lines
1.4 KiB
TypeScript
Raw Permalink 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 '../Team Up'
const card: Card = {
name: {
en: "Weedle",
fr: "Aspicot",
es: "Weedle",
it: "Weedle",
pt: "Weedle",
de: "Hornliu"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
13,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Tangle Drag",
fr: "Lasso Piège",
es: "Arrastre Enmarañado",
it: "Trascinavvolgi",
pt: "Arrastar e Entrelaçar",
de: "Wirrzieher"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a).",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus."
},
},
{
cost: [
"Grass",
],
name: {
en: "Bug Bite",
fr: "Piqûre",
es: "Picadura",
it: "Coleomorso",
pt: "Picada",
de: "Käferbiss"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card