1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

72 lines
925 B
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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Larvitar",
fr: "Embrylex",
es: "Larvitar",
it: "Larvitar",
pt: "Larvitar",
de: "Larvitar"
},
illustrator: "Sanosuke Sakuma",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Fighting",
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Sand Spray",
fr: "Jet Sableux",
es: "Rociado de Arena",
it: "Silicospruzzo",
pt: "Spray de Areia",
de: "Sandspray"
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Pierce",
fr: "Transpercement",
es: "Perforar",
it: "Perforare",
pt: "Perfurar",
de: "Durchbohren"
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D"
}
export default card