1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

68 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "パフュートン",
'zh-tw': "飄香豚",
id: "Oinkologne"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
dexId: [916],
hp: 130,
types: ["Colorless"],
description: {
ja: "花のような 香りを 振りまく。 筋肉が 発達した 脚は 軽く 5メートルを 飛び越える。",
'zh-tw': "會釋放出如花般的香氣。腿部肌肉發達,要跳超過 5公尺高也是輕而易舉。",
id: "Oinkologne menyebarkan wangi semerbak layaknya bunga. Otot kakinya yang telah berkembang membuat Pokémon ini melompat setinggi lebih dari 5 m dengan mudahnya."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "えりすぐり",
'zh-tw': "特優",
id: "Pilihan Terbaik"
},
effect: {
ja: "コインを3回投げ、オモテの数ぶんまで、自分のトラッシュから好きなカードを選び、相手に見せて、手札に加える。",
'zh-tw': "擲3次硬幣從自己的棄牌區任意選擇最多與正面出現的次數相同數量的卡在給對手看過後加入手牌。",
id: "Lempar koin 3 kali. Pilih kartu sesukanya dari Trash sendiri paling banyak sejumlah lemparan dengan hasil sisi depan, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan."
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "パフュームプレス",
'zh-tw': "芬香壓制",
id: "Perfume Press"
},
damage: 70,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card