mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
50
data/Sword & Shield/Silver Tempest/144.ts
Normal file
50
data/Sword & Shield/Silver Tempest/144.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Buneary",
|
||||
fr: "Laporeille",
|
||||
es: "Buneary",
|
||||
it: "Buneary",
|
||||
pt: "Buneary",
|
||||
de: "Haspiror"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Try Bouncing",
|
||||
fr: "Bond d'Essai",
|
||||
es: "Prueba Rebote",
|
||||
it: "Balzoprova",
|
||||
pt: "Tentativa Saltitante",
|
||||
de: "Hüpfversuch"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user