mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Brilliant Stars (#250)
This commit is contained in:
73
data/Sword & Shield/Brilliant Stars/125.ts
Normal file
73
data/Sword & Shield/Brilliant Stars/125.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Brilliant Stars"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cinccino",
|
||||
fr: "Pashmilla",
|
||||
es: "Cinccino",
|
||||
it: "Cinccino",
|
||||
pt: "Cinccino",
|
||||
de: "Chillabell"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Minccino",
|
||||
fr: "Chinchidou",
|
||||
es: "Minccino",
|
||||
it: "Minccino",
|
||||
pt: "Minccino",
|
||||
de: "Picochilla"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Slap",
|
||||
fr: "Gifle",
|
||||
es: "Bofetón",
|
||||
it: "Sberla",
|
||||
pt: "Tapa",
|
||||
de: "Hieb"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Triple Axel",
|
||||
fr: "Triple Axel",
|
||||
es: "Triple Axel",
|
||||
it: "Triplo Axel",
|
||||
pt: "Pinote Triplo",
|
||||
de: "Dreifach-Axel"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 50 damage for each heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 50 dégâts pour chaque côté face.",
|
||||
es: "Lanza 3 monedas. Este ataque hace 50 puntos de daño por cada cara.",
|
||||
it: "Lancia tre volte una moneta. Questo attacco infligge 50 danni ogni volta che esce testa.",
|
||||
pt: "Jogue 3 moedas. Este ataque causa 50 pontos de dano para cada cara.",
|
||||
de: "Wirf 3 Münzen. Diese Attacke fügt 50 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "50×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user