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

feat: add the Japanese SV8 (#559)

This commit is contained in:
2024-11-06 00:58:08 +01:00
committed by GitHub
parent c1d83caca0
commit e30d54469d
107 changed files with 5124 additions and 0 deletions

56
data-asia/SV/SV8/041.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "カプ・コケコ"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
dexId: [785],
hp: 120,
types: ["Lightning"],
description: {
ja: "守り神と 呼ばれるが 気分を 害する 人間や ポケモンには 襲い掛かる 荒ぶる神 でもある。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "かみなりをよぶ"
},
effect: {
ja: "自分の山札からポケモンを2枚まで選び、相手に見せて、手札に加える。そして山札を切る。"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "サイドカウンター"
},
damage: "90",
effect: {
ja: "自分のサイドの残り枚数が、相手のサイドの残り枚数より多いなら、90ダメージ追加。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card