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

57
data-asia/SV/SV1V/081.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "スコヴィラン"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
dexId: [952],
hp: 110,
types: ["Grass"],
description: {
ja: "グリーンヘッドは 辛み成分に 脳が 刺激されて 凶暴化。 暴れだすと 手がつけられない。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ホットバイト"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをやけどにする。"
}
}, {
cost: ["Grass", "Colorless", "Colorless"],
name: {
ja: "げきからヒーハー"
},
damage: "90",
effect: {
ja: "このポケモンにエネルギーがついているなら、90ダメージ追加。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1
}
export default card