mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
73
data/Sword & Shield/Silver Tempest/052.ts
Normal file
73
data/Sword & Shield/Silver Tempest/052.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lanturn",
|
||||
fr: "Lanturn",
|
||||
es: "Lanturn",
|
||||
it: "Lanturn",
|
||||
pt: "Lanturn",
|
||||
de: "Lanturn"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chinchou",
|
||||
fr: "Loupio",
|
||||
es: "Chinchou",
|
||||
it: "Chinchou",
|
||||
pt: "Chinchou",
|
||||
de: "Lampi"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Strong Volt",
|
||||
fr: "Décharge Foudroyante",
|
||||
es: "Descarga Fulminante",
|
||||
it: "Supervolt",
|
||||
pt: "Tensão Intensa",
|
||||
de: "Voltkraft"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
fr: "Défaussez 2 Énergies de ce Pokémon.",
|
||||
es: "Descarta 2 Energías de este Pokémon.",
|
||||
it: "Scarta due Energie da questo Pokémon.",
|
||||
pt: "Descarte 2 Energias deste Pokémon.",
|
||||
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user