mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
Chilling-Reign (#10)
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
55
data/Sword & Shield/Chilling Reign/52.ts
Normal file
55
data/Sword & Shield/Chilling Reign/52.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Chilling Reign'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Thundurus",
|
||||
fr: "Fulguris"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Assisting Spark",
|
||||
fr: "Étincelle de Soutien"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "You may attach a Lightning Energy card from your hand to 1 of your Benched Pokémon.",
|
||||
fr: "Vous pouvez attacher une carte Énergie Lightning de votre main à l’un de vos Pokémon de Banc."
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Thunder",
|
||||
fr: "Fatal-Foudre"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
fr: "Ce Pokémon s’inflige aussi 30 dégâts."
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user