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:
38
data/Sword & Shield/Shining Fates/SV002.ts
Normal file
38
data/Sword & Shield/Shining Fates/SV002.ts
Normal file
@ -0,0 +1,38 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Shining Fates'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Efflèche"
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
fr: "Brindibou"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Tranch’Herbe"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user