mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: add the Japanese SV8 (#559)
This commit is contained in:
61
data-asia/SV/SV8/049.ts
Normal file
61
data-asia/SV/SV8/049.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV8"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "エムリット"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [481],
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
ja: "悲しみの 苦しさと 喜びの 尊さを 人々に 教えた。 感情の神と 呼ばれている。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "こころをみたす"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "自分の手札から「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。"
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
ja: "ゴッドバースト"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
effect: {
|
||||
ja: "自分のベンチに「ユクシー」「アグノム」がいないなら、このワザは失敗。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user