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

51
data-asia/SV/SV1S/085.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "パピモッチ"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
dexId: [926],
hp: 60,
types: ["Psychic"],
description: {
ja: "しっとり すべすべの 触り心地。 吐息に 含まれている 酵母で まわりのものを 発酵させる。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
ja: "もちもち"
},
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。"
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "はねまわる"
},
damage: 30
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2
}
export default card