1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/084.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: "zig",
category: "Pokemon",
dexId: [417],
hp: 70,
types: ["Lightning"],
description: {
ja: "溜まった 電気を 分け与えようと 頬袋を こすり合わせる パチリスを 見かけることも ある。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "でんきぶくろ"
},
effect: {
ja: "このポケモンはマヒにならない。"
}
}],
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "みんなでほうでん"
},
damage: "10",
effect: {
ja: "自分のベンチのポケモンの数×20ダメージ追加。このワザのダメージは弱点を計算しない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card