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/39.ts
Normal file
55
data/Sword & Shield/Chilling Reign/39.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Chilling Reign'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Walrein",
|
||||
fr: "Kaimorse"
|
||||
},
|
||||
|
||||
illustrator: "KEIICHIRO ITO",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sealeo",
|
||||
fr: "Phogleur"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Aurora Beam",
|
||||
fr: "Onde Boréale"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Hail Prison",
|
||||
fr: "Prison de Grêle"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard 2 Energy from this Pokémon. Your opponent’s Active Pokémon is now Paralyzed.",
|
||||
fr: "Défaussez 2 Énergies de ce Pokémon. Le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Water", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user