1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Ultra Prism'
const card: Card = {
name: {
en: "Alolan Sandslash",
fr: "Sablaireau dAlola",
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
28,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Alolan Sandshrew",
fr: "Sabelette dAlola",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Spike Armor",
fr: "Armure Piquante",
},
effect: {
en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if this Pokémon is Knocked Out), put 6 damage counters on the Attacking Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts dune attaque (même si ce Pokémon est mis K.O.), placez 6 marqueurs de dégâts sur le Pokémon Attaquant.",
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Frost Breath",
fr: "Souffle Glacé",
},
damage: 90,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 1,
}
export default card