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

53
data-asia/SV/SV1V/090.ts Normal file
View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ホシガリス"
},
illustrator: "Teeziro",
category: "Pokemon",
dexId: [819],
hp: 60,
types: ["Colorless"],
description: {
ja: "どんなに お腹いっぱい 食べても また 腹ペコになるのが 不安で 頬と 尻尾に 木の実を 溜める。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "すあなにかくす"
},
effect: {
ja: "自分の番に1回使える。自分の手札をすべてウラにして切り、山札の下にもどす。その後、山札を1枚引く。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かみつく"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card