1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

49
data-asia/S/SLD/006.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SLD"
const card: Card = {
set: Set,
name: {
'zh-tw': "飯匙蛇",
ja: "ハブネーク"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 110,
types: ["Darkness"],
description: {
'zh-tw': "總是用岩石打磨尾巴上的刀刃,所以刀刃非常鋒利。和貓鼬斬是死對頭。",
ja: "尻尾の 刀は いつも 岩で 研いでいるので 切れ味 ばつぐん。 ザングースとは 因縁の あいだ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "突襲迴轉",
ja: "ふいうちターン"
},
effect: {
'zh-tw': "將這隻寶可夢與備戰區的【惡】寶可夢互換。",
ja: "このポケモンをベンチのポケモンと入れ替える。"
},
damage: 60,
cost: ["Darkness", "Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [336]
}
export default card