mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
only missing the secrets cards as they are secret :D Signed-off-by: Avior <florian.bouillon@delta-wings.net>
51 lines
877 B
TypeScript
51 lines
877 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Chilling Reign'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Sandaconda V",
|
||
fr: "Dunaconda V"
|
||
},
|
||
|
||
illustrator: "Shin Nagasawa",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 220,
|
||
types: ["Fighting"],
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Wall of Sand",
|
||
fr: "Muraille de Sable"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Land Crush",
|
||
fr: "Écras’Terre"
|
||
},
|
||
|
||
damage: 140,
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |