1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

56
data-asia/S/SLL/007.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SLL"
const card: Card = {
set: Set,
name: {
'zh-tw': "岩狗狗",
ja: "イワンコ"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
hp: 60,
types: ["Fighting"],
description: {
'zh-tw': "非常容易親近,但是卻喜歡東咬西咬,所以如果要一直培育牠的話會相當費勁。",
ja: "よく 懐くが 噛み癖が あるので ずっと 育てるには なかなか 骨が 折れるぞ。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雙重抽出",
ja: "ダブルドロー"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。",
ja: "自分の山札を2枚引く。"
},
cost: ["Fighting"]
}, {
name: {
'zh-tw': "後踢",
ja: "うしろげり"
},
damage: 30,
cost: ["Fighting", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [744]
}
export default card