1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

91 lines
2.4 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Celestial Storm'
const card: Card = {
name: {
en: "Onix",
fr: "Onix",
es: "Onix",
it: "Onix",
pt: "Onix",
de: "Onix"
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
95,
],
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Screech",
fr: "Grincement",
es: "Chirrido",
it: "Stridio",
pt: "Agudo",
de: "Kreideschrei"
},
effect: {
en: "During your next turn, the Defending Pokémon takes 20 more damage from attacks (after applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, le Pokémon Défenseur subit 20 dégâts supplémentaires provenant des attaques (après application de la Faiblesse et de la Résistance).",
es: "Durante tu próximo turno, los ataques hacen 20 puntos de daño más al Pokémon Defensor (después de aplicar Debilidad y Resistencia).",
it: "Durante il tuo prossimo turno, il Pokémon difensore subisce 20 danni in più dagli attacchi, dopo aver applicato debolezza e resistenza.",
pt: "Durante a sua próxima vez de jogar, o Pokémon Defensor receberá 20 pontos de dano a mais de ataques (após a aplicação de Fraqueza e Resistência).",
de: "Während deines nächsten Zuges werden dem Verteidigenden Pokémon durch Attacken 20 Schadenspunkte mehr zugefügt (nachdem Schwäche und Resistenz verrechnet wurden)."
},
},
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Rage",
fr: "Frénésie",
es: "Furia",
it: "Ira",
pt: "Ira",
de: "Raserei"
},
effect: {
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur ce Pokémon.",
es: "Este ataque hace 10 puntos de daño más por cada contador de daño en este Pokémon.",
it: "Questo attacco infligge 10 danni in più per ogni segnalino danno presente su questo Pokémon.",
pt: "Este ataque causa 10 pontos de dano a mais para cada contador de dano neste Pokémon.",
de: "Diese Attacke fügt 10 Schadenspunkte mehr mal der Anzahl der Schadensmarken auf diesem Pokémon zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card