mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
64 lines
987 B
TypeScript
64 lines
987 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sandaconda V",
|
||
fr: "Dunaconda V"
|
||
},
|
||
|
||
illustrator: "aky CG Works",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
],
|
||
name: {
|
||
en: "Sand Eater",
|
||
fr: "Sablivore"
|
||
},
|
||
effect: {
|
||
en: "Attach a Fighting Energy card from your discard pile to this Pokémon.",
|
||
fr: "Attachez une carte Énergie Fighting de votre pile de défausse à ce Pokémon."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Fighting",
|
||
"Fighting",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sand Breath",
|
||
fr: "Souffle Sableux"
|
||
},
|
||
effect: {
|
||
en: "Discard 2 Energy from this Pokémon.",
|
||
fr: "Défaussez 2 Énergies de ce Pokémon."
|
||
},
|
||
damage: 220,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Grass",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
hp: 220,
|
||
types: ["Fighting"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|