1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-11 16:31:58 +00:00

feat: Add Astral Radiance (#305)

This commit is contained in:
2022-05-27 01:49:58 +02:00
committed by GitHub
parent a006f77bf4
commit 91865f7f02
247 changed files with 16466 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Dewott",
fr: "Mateloutre",
es: "Dewott",
it: "Dewott",
pt: "Dewott",
de: "Zwottronin"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Water"],
evolveFrom: {
en: "Oshawott",
fr: "Moustillon",
es: "Oshawott",
it: "Oshawott",
pt: "Oshawott",
de: "Ottaro"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
en: "Razor Shell",
fr: "Coqui-Lame",
es: "Concha Filo",
it: "Conchilama",
pt: "Concha Navalha",
de: "Kalkklinge"
},
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: "20+"
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card