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

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

55
data-asia/SV/SV6s/048.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Crawdaunt"
},
illustrator: "Kurata So",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
id: "Pokémon pengamuk yang mengayun-ayunkan capit raksasanya. Konon ia merupakan Pokémon yang sulit sekali dipelihara."
},
stage: "Stage1",
attacks: [{
name: {
id: "Gunting Gunting"
},
effect: {
id: "Lempar koin 2 kali. Buang kartu dari atas Deck lawan ke Trash untuk tiap lemparan dengan hasil sisi depan."
},
damage: 40,
cost: ["Water", "Colorless"]
}, {
name: {
id: "Palu Mengamuk"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 180,
cost: ["Water", "Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card