mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
Added shining fates (#24)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
53
data/Sword & Shield/Shining Fates/SV024.ts
Normal file
53
data/Sword & Shield/Shining Fates/SV024.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Shining Fates'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Darumacho de Galar"
|
||||
},
|
||||
|
||||
illustrator: "nagimiso",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
fr: "Darumarond de Galar"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Blizzard"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cette attaque inflige aussi 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
fr: "Coup d’Boule Écrasant"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas utiliser Coup d’Boule Écrasant."
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
cost: ["Water", "Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user