mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-23 01:19:51 +00:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Black Bolt"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Cinccino",
|
|
fr: "Pashmilla",
|
|
de: "Chillabell",
|
|
it: "Cinccino",
|
|
pt: "Cinccino",
|
|
es: "Cinccino",
|
|
'es-mx': "Cinccino"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Colorless"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Do the Wave",
|
|
fr: "Faites la Vague",
|
|
de: "Wellenreiten",
|
|
it: "Fare la Ola",
|
|
pt: "Fazer a Ola",
|
|
es: "Hacer la Ola",
|
|
'es-mx': "Hacer la Ola"
|
|
},
|
|
|
|
effect: {
|
|
en: "This attack does 20 more damage for each of your Benched Pokémon.",
|
|
fr: "Cette attaque inflige 20 dégâts supplémentaires pour chacun de vos Pokémon de Banc.",
|
|
de: "Diese Attacke fügt für jedes Pokémon auf deiner Bank 20 Schadenspunkte mehr zu.",
|
|
it: "Questo attacco infligge 20 danni in più per ogni Pokémon nella tua panchina.",
|
|
pt: "Este ataque causa 20 pontos de dano a mais para cada um dos seus Pokémon no Banco.",
|
|
es: "Este ataque hace 20 puntos de daño más por cada uno de tus Pokémon en Banca.",
|
|
'es-mx': "Este ataque hace 20 puntos de daño más por cada uno de tus Pokémon en Banca."
|
|
},
|
|
|
|
damage: "20+"
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |