mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +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:
47
data/Sword & Shield/Chilling Reign/27.ts
Normal file
47
data/Sword & Shield/Chilling Reign/27.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Chilling Reign'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Raboot",
|
||||
fr: "Lapyro"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Scorbunny",
|
||||
fr: "Flambino"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Volley Kick",
|
||||
fr: "Reprise de Volée"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon can’t attack.",
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer."
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user