mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
55
data/Sword & Shield/Fusion Strike/125.ts
Normal file
55
data/Sword & Shield/Fusion Strike/125.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sandygast",
|
||||
fr: "Bacabouh",
|
||||
es: "Sandygast",
|
||||
it: "Sandygast",
|
||||
pt: "Sandygast",
|
||||
de: "Sankabuh"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
retreat: 3,
|
||||
regulationMark: "E",
|
||||
illustrator: "KIYOTAKA OSHIYAMA",
|
||||
|
||||
description: {
|
||||
en: "If you build sand mounds when you're playing, destroy them before you go home, or they may get possessed and become Sandygast."
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Vibration"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Spooky Shot"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
variants: {
|
||||
normal: true,
|
||||
reverse: true,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user