1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

74 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../XY Black Star Promos'
const card: Card = {
name: {
en: "Altaria",
fr: "Altaria",
},
illustrator: "Naoki Saito",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
334,
],
hp: 90,
types: [
"Colorless",
],
evolveFrom: {
en: "Swablu",
fr: "Tylton",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Clear Humming",
fr: "Évolution Δ",
},
effect: {
en: "Each of your Colorless Pokémon has no Weakness.",
fr: "Vous pouvez jouer cette carte de votre main pour faire évoluer un Pokémon pendant votre premier tour ou pendant le tour où vous le jouez.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Wing Attack",
fr: "Cru-Aile",
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card