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:
51
data-asia/SV/SV1S/085.ts
Normal file
51
data-asia/SV/SV1S/085.ts
Normal 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
|
Reference in New Issue
Block a user