mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
feat: Add Silver Tempest to the DB (#386)
This commit is contained in:
61
data/Sword & Shield/Silver Tempest/053.ts
Normal file
61
data/Sword & Shield/Silver Tempest/053.ts
Normal file
@@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Silver Tempest"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rotom",
|
||||
fr: "Motisma",
|
||||
es: "Rotom",
|
||||
it: "Rotom",
|
||||
pt: "Rotom",
|
||||
de: "Rotom"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Overhaul",
|
||||
fr: "Refonte",
|
||||
es: "Reparación",
|
||||
it: "Revisione",
|
||||
pt: "Reconstrução",
|
||||
de: "Überholung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
|
||||
fr: "Mélangez votre main avec votre deck. Ensuite, piochez 6 cartes.",
|
||||
es: "Pon las cartas de tu mano en tu baraja y barájalas todas. Después, roba 6 cartas.",
|
||||
it: "Rimischia le carte che hai in mano nel tuo mazzo. Poi pesca sei carte.",
|
||||
pt: "Embaralhe a sua mão no seu baralho. Em seguida, compre 6 cartas.",
|
||||
de: "Mische deine Handkarten in dein Deck. Ziehe anschließend 6 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Mach Bolt",
|
||||
fr: "Éclair Fulgurant",
|
||||
es: "Rayo Mach",
|
||||
it: "Fulmine Mach",
|
||||
pt: "Raio Supersônico",
|
||||
de: "Flotter Sprung"
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user