mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* Added basic translation IT will need a second checkup by another source as attacks are not correcly ordered Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net> * Removed bugged file Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
77 lines
926 B
TypeScript
77 lines
926 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Dark Explorers'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Sandile",
|
||
fr: "Mascaïman",
|
||
es: "Sandile",
|
||
it: "Sandile",
|
||
pt: "Sandile",
|
||
de: "Ganovil"
|
||
},
|
||
|
||
illustrator: "Hajime Kusajima",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
551,
|
||
],
|
||
|
||
hp: 70,
|
||
|
||
types: [
|
||
"Darkness",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sand Dive",
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.",
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Corkscrew Punch",
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Psychic",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 2
|
||
}
|
||
|
||
export default card
|