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

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

63
data-asia/SV/SV9/055.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ガケガニ",
'zh-tw': "毛崖蟹",
'zh-cn': "毛崖蟹"
},
illustrator: "Shinya Komatsu",
rarity: "Uncommon",
category: "Pokemon",
dexId: [950],
hp: 120,
types: ["Fighting"],
description: {
ja: "逆さまになって 崖の 上から 獲物を 狙うが 頭に 血が上るので 長くは 待てない。",
'zh-tw': "會倒立在懸崖上等獵物上門, 但由於那會讓牠的血液倒流, 因此等不了太長的時間。",
'zh-cn': "會倒立在懸崖上等獵物上門, 但由於那會讓牠的血液倒流, 因此等不了太長的時間。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ちょっきんバサミ",
'zh-tw': "喀嚓鉗",
'zh-cn': "喀嚓鉗"
},
effect: {
ja: "コインを2回投げ、オモテの数ぶん、相手のバトルポケモンについているエネルギーを選び、トラッシュする。",
'zh-tw': "擲2次硬幣選擇與正面出現的次數相同數量的對手的戰鬥寶可夢身上附加的能量將其丟棄。",
'zh-cn': "擲2次硬幣選擇與正面出現的次數相同數量的對手的戰鬥寶可夢身上附加的能量將其丟棄。"
}
}, {
cost: ["Fighting", "Colorless", "Colorless"],
name: {
ja: "ぶちかます",
'zh-tw': "頭突",
'zh-cn': "頭突"
},
damage: 100
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "I"
}
export default card