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

60
data-asia/SV/SV9/073.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "クリムガン",
'zh-tw': "赤面龍",
'zh-cn': "赤面龍"
},
illustrator: "kawayoo",
rarity: "Common",
category: "Pokemon",
dexId: [621],
hp: 120,
types: ["Dragon"],
description: {
ja: "凶暴で ずる賢い。 ほかの ポケモンが 掘った 巣穴を 奪って すみかにする。",
'zh-tw': "性情凶暴且狡猾。會搶奪 其他寶可夢挖好的巢穴, 來當作是自己的窩。",
'zh-cn': "性情凶暴且狡猾。會搶奪 其他寶可夢挖好的巢穴, 來當作是自己的窩。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "りゅうのたけり",
'zh-tw': "龍之猛暴",
'zh-cn': "龍之猛暴"
},
damage: 20,
effect: {
ja: "自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。",
'zh-tw': "從自己的棄牌區選擇1張「基本【火】能量」卡附於自己的【龍】寶可夢身上。",
'zh-cn': "從自己的棄牌區選擇1張「基本【火】能量」卡附於自己的【龍】寶可夢身上。"
}
}, {
cost: ["Fire", "Water", "Colorless"],
name: {
ja: "スラッシュクロー",
'zh-tw': "利爪揮砍",
'zh-cn': "利爪揮砍"
},
damage: 120
}],
retreat: 2,
regulationMark: "I"
}
export default card