mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +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/SV040.ts
Normal file
53
data/Sword & Shield/Shining Fates/SV040.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Shining Fates'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Fulgudog"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
fr: "Voltoutou"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Grosse Morsure"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite."
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
fr: "Crocs Combatifs"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-V ou un Pokémon-GX, cette attaque inflige 90 dégâts supplémentaires."
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user