1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32: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

87 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Lost Thunder'
const card: Card = {
name: {
en: "Cascoon",
fr: "Blindalys",
es: "Cascoon",
it: "Cascoon",
pt: "Cascoon",
de: "Panekon"
},
illustrator: "Aya Kusube",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
268,
],
hp: 70,
types: [
"Grass",
],
evolveFrom: {
en: "Wurmple",
fr: "Chenipotte",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Cocoon Collector",
fr: "Collectionneur de Cocons",
es: "Colección de Crisálidas",
it: "Collezionista di Crisalidi",
pt: "Colecionador de Casulos",
de: "Kokonsammler"
},
effect: {
en: "Search your deck for up to 4 in any combination of Silcoon and Cascoon and put them onto your Bench. Then, shuffle your deck.",
fr: "Cherchez une combinaison dun maximum de 4 Armulys et Blindalys dans votre deck, et placez-les sur votre Banc. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 4 Silcoon y Cascoon, en cualquier combinación, y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a quattro Silcoon e Cascoon in qualsiasi combinazione e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 4 Silcoon e Cascoon no seu baralho em qualquer combinação e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach einer beliebigen Kombination aus bis zu 4 Schaloko und Panekon und lege sie auf deine Bank. Mische anschließend dein Deck."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card