1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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/086.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: "Shinji Kanda",
rarity: "Common",
category: "Pokemon",
dexId: [352],
hp: 70,
types: ["Colorless"],
description: {
ja: "身体の 色を 変えて 景色に 溶け込む。 長く かまわないでいると スネて 姿を 見せなくなる。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "かくれじょうず"
},
effect: {
ja: "このポケモンがワザのダメージを受けるとき、自分はコインを1回投げる。オモテなら、このポケモンはそのダメージを受けない。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ベロウィップ"
},
effect: {
ja: "相手のポケモン1匹に、30ダメージ。ベンチは弱点・抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card