52 lines
2.3 KiB
JavaScript
52 lines
2.3 KiB
JavaScript
const sampleReading = {
|
|
id: null,
|
|
name: '홍길동',
|
|
birth_year: 1990,
|
|
birth_month: 5,
|
|
birth_day: 20,
|
|
birth_hour: 10,
|
|
gender: 'male',
|
|
calendar_type: 'solar',
|
|
birth_place: '서울특별시',
|
|
saju_data: {
|
|
year: { stem: '己', stem_kr: '음토', branch: '巳', branch_kr: '사화', ten_god: '정인', fortune: '丙 庚 戊' },
|
|
month: { stem: '丙', stem_kr: '양화', branch: '子', branch_kr: '자수', ten_god: '편관', fortune: '壬 癸' },
|
|
day: { stem: '庚', stem_kr: '양금', branch: '申', branch_kr: '신금', ten_god: '-', fortune: '庚 壬 戊' },
|
|
hour: { stem: '辛', stem_kr: '음금', branch: '巳', branch_kr: '사화', ten_god: '겁재', fortune: '丙 庚 戊' },
|
|
},
|
|
analysis_data: {
|
|
element_scores: { '木': 20, '火': 35, '土': 25, '金': 55, '水': 30 },
|
|
day_master_strength: { result: '강함', score: 78, reasons: ['금 기운 우세', '일간 중심 안정'] },
|
|
},
|
|
fortune_scores: {
|
|
overall: 78,
|
|
wealth: 80,
|
|
romance: 70,
|
|
social: 75,
|
|
career: 82,
|
|
},
|
|
lucky: {
|
|
color: ['#1F2A44', '#E8C76B', '#6B4423', '#D89098', '#F7F2E8'],
|
|
number: 8,
|
|
direction: '동쪽',
|
|
time: '오전 10시 ~ 12시',
|
|
good_signs: ['작은 기회가 큰 흐름으로 이어질 수 있어요.'],
|
|
warnings: ['충동적인 결정은 피하고 여유를 가지세요.'],
|
|
},
|
|
daeun_data: [
|
|
{ age: 0, start_year: 1990, end_year: 1999, stem: '戊', branch: '戌' },
|
|
{ age: 10, start_year: 2000, end_year: 2009, stem: '丁', branch: '酉' },
|
|
{ age: 20, start_year: 2010, end_year: 2019, stem: '丙', branch: '申' },
|
|
{ age: 30, start_year: 2020, end_year: 2029, stem: '乙', branch: '未' },
|
|
{ age: 40, start_year: 2030, end_year: 2039, stem: '甲', branch: '午' },
|
|
{ age: 50, start_year: 2040, end_year: 2049, stem: '癸', branch: '巳' },
|
|
{ age: 60, start_year: 2050, end_year: 2059, stem: '壬', branch: '辰' },
|
|
{ age: 70, start_year: 2060, end_year: 2069, stem: '辛', branch: '卯' },
|
|
],
|
|
interpretation_json: {
|
|
summary: '당신은 강한 의지와 추진력을 가진 분입니다. 새로운 것을 두려워하지 않고 도전하는 용기가 큰 장점이며, 주변 사람에게 신뢰감을 주는 리더형의 흐름이 보입니다.',
|
|
},
|
|
};
|
|
|
|
export default sampleReading;
|