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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SVD/067.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "毛崖蟹"
},
illustrator: "nagimiso",
category: "Pokemon",
hp: 130,
types: ["Fighting"],
description: {
'zh-tw': "會倒立在懸崖上等獵物上門,但由於那會讓牠的血液倒流, 因此等不了太長的時間。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "夾住"
},
damage: 50,
cost: ["Fighting", "Fighting"]
}, {
name: {
'zh-tw': "腎上腺錘"
},
effect: {
'zh-tw': "將這隻寶可夢【混亂】。"
},
damage: 130,
cost: ["Fighting", "Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card