mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Added shining fates (#24)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
45
data/Sword & Shield/Shining Fates/SV075.ts
Normal file
45
data/Sword & Shield/Shining Fates/SV075.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Shining Fates'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Dolman"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Ultimawashi"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
fr: "Étau Puissant"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si au moins une Énergie supplémentaire est attachée à ce Pokémon (en plus du coût de cette attaque), cette attaque inflige 60 dégâts supplémentaires."
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 4
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user