1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 18:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Guardians Rising'
const card: Card = {
name: {
en: "Alolan Sandslash",
fr: "Sablaireau dAlola",
},
illustrator: "TOKIYA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
28,
],
hp: 110,
types: [
"Water",
],
evolveFrom: {
en: "Alolan Sandshrew",
fr: "Sabelette dAlola",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Slush Rush",
fr: "Chasse-Neige",
},
effect: {
en: "Once during your turn (before your attack), you may draw a card.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez piocher une carte.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Smash Turn",
fr: "Tour Fracassant",
},
effect: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
fr: "Échangez ce Pokémon avec lun de vos Pokémon de Banc.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
}
export default card