mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Added BW translation (#65)
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -4,16 +4,24 @@ import Set from '../Dark Explorers'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Aerodactyl",
|
||||
fr: "Ptéra",
|
||||
es: "Aerodactyl",
|
||||
it: "Aerodactyl",
|
||||
pt: "Aerodactyl",
|
||||
de: "Aerodactyl"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
142,
|
||||
],
|
||||
|
||||
hp: 90,
|
||||
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
@ -25,12 +33,23 @@ const card: Card = {
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Ancient Scream",
|
||||
fr: "Cri Préhistorique",
|
||||
es: "Grito Prehistórico",
|
||||
it: "Urloantico",
|
||||
pt: "Grito Ancestral",
|
||||
de: "Urzeitschrei"
|
||||
},
|
||||
effect: {
|
||||
en: "Your Pokémon's attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
||||
en: "Your Pokémon’s attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).",
|
||||
fr: "Les attaques de vos Pokémon infligent 10 dégâts supplémentaires aux Pokémon Actifs (avant application de la Faiblesse et de la Résistance).",
|
||||
es: "Los ataques de tus Pokémon hacen 10 puntos de daño más a los Pokémon Activos (antes de aplicar Debilidad y Resistencia).",
|
||||
it: "Gli attacchi dei tuoi Pokémon infliggono 10 danni in più al Pokémon attivo, prima di aver applicato debolezza e resistenza.",
|
||||
pt: "Os ataques do seu Pokémon causam 10 de danos extras ao Pokémon Ativo (antes de aplicar Fraqueza e Resistência).",
|
||||
de: "Die Angriffe deiner Pokémon fügen den Aktiven Pokémon 10 weitere Schadenspunkte zu (bevor Schwäche und Resistenz verrechnet werden)."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -46,6 +65,7 @@ const card: Card = {
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
@ -53,10 +73,7 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user