mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
50
data/Sword & Shield/Silver Tempest/091.ts
Normal file
50
data/Sword & Shield/Silver Tempest/091.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Phanpy",
|
||||
fr: "Phanpy",
|
||||
es: "Phanpy",
|
||||
it: "Phanpy",
|
||||
pt: "Phanpy",
|
||||
de: "Phanpy"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Knock Away",
|
||||
fr: "Asticotage",
|
||||
es: "Derribar",
|
||||
it: "Scaraventa",
|
||||
pt: "Jogar Longe",
|
||||
de: "Zurückschlagen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.",
|
||||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.",
|
||||
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.",
|
||||
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "10+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user