mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
Added shining fates (#24)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
54
data/Sword & Shield/Shining Fates/SV085.ts
Normal file
54
data/Sword & Shield/Shining Fates/SV085.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Shining Fates'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Angoliath"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
fr: "Fourbelin"
|
||||
},
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
fr: "Serment Obscur"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Tant que ce Pokémon est sur le Poste Actif, les attaques du Pokémon Actif de votre adversaire coûtent Colorless de plus."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
fr: "Pression Énergétique"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire."
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user