SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (2024)

Skip to content

{{ sb_customer_name_text }}

OR

`})sb_head_app.component('account-button', { methods: { sb_toggle_account_display: function() { if(this.$root.sb_account_show===true){ this.$root.sb_account_show = false; } else { this.$root.sb_account_show = true; } this.$root.sb_cart_show = false; } }, computed: { sb_account_button_wording: { get() { return 'Account'; } } }, template: ``})sb_head_app.component('search-button', { data() { return { sb_search_page: 'https://www.seven82motors.com.au/search/', } }, methods: { sb_display_search_page: function() { window.location.href = this.sb_search_page; } }, template: ``})sb_head_app.component('account-options', { props: ['account_show','customer','sb_key'], data() { return { sb_username: null, sb_password: null, sb_login_feedback: false } }, methods: { sb_get_checkout_link: function(chkPage) { var chk_link = sb_shop_vars.checkout_pay + '/'; if(chkPage=='create_account'){ chk_link += 'create-account'; } else if(chkPage=='forgot_password'){ chk_link += 'forgot-your-password'; } else if(chkPage=='account'){ chk_link += 'my-account'; } else if(chkPage=='forgot_password'){ chk_link += 'forgot-your-password'; } else if(chkPage=='logout'){ chk_link += 'logout'; } chk_link += '?sb_key='+this.sb_key; return chk_link; }, sb_login_process: function() { const account_opts_data = this; const lg_body = { email_address: this.sb_username, password: this.sb_password, storage_key: this.sb_key }; const lg_config = { headers: { 'Authorization': 'Bearer abcdef12345', 'content-type': 'application/json', } }; axios.post(sb_shop_vars.customer.authenticate, lg_body, lg_config) .then(function (response) { if(sb_shop_vars.debug == true) console.log(response.data); if(response.data.status=='success'){ // Trigger our global login function account_opts_data.$emit('handle-login', response.data.sb_customer.customer); } else if(response.data.feedback){ // Display error feedback account_opts_data.sb_login_feedback = response.data.feedback; } }) .catch(function (error) { console.log(error); return false; }); } }, template: `

Hi {{ customer.fname }},
Welcome Back!

`})sb_head_app.component('cart-button', { props: ['count'], methods: { sb_toggle_cart_display: function() { if(this.$root.sb_cart_type == 'count') { document.querySelector('#save_storage_session').submit(); } else { if(this.$root.sb_cart_show===true){ this.$root.sb_cart_show = false; } else { this.$root.sb_cart_show = true; } this.$root.sb_account_show = false; } } }, computed: { sb_count_wording: { get() { return '(' + this.count + ')'; } } }, template: ``})sb_head_app.component('head-cart', { props: ['cart_type','cart_count','cart_show','client','storage','sb_key','cart','formatter','cart_total','currency','multi_currency'], methods: { sb_toggle_cart_display: function() { if(this.$root.sb_cart_show===true){ this.$root.sb_cart_show = false; } else { this.$root.sb_cart_show = true; } this.$root.sb_account_show = false; } }, template: `
`})sb_head_app.component('cart-basic', { props: ['item_count'], computed: { itemTxt: { get() { let txt = 'item'; if(this.item_count > 1) txt += 's'; return txt; } }, }, template: `

You have {{ item_count }} {{ itemTxt }} in your cart

`})sb_head_app.component('cart-items', { props: ['client', 'product', 'formatter'], methods: { sb_determine_product_cost: function(qty, price) { var cleanPrice = price.replace(/,/g, ''); var formattedPrice = this.formatter.format(cleanPrice * qty); return formattedPrice; } }, computed: { prodName: { get() { if(this.product.name) return this.product.name.replace(/\\/g, ''); } }, }, template: ``})sb_head_app.component('cart-total', { props: ['total','currency','multi_currency'], template: `

Subtotal:

{{ total }}{{ currency }}

`})sb_head_app.component('loading-tile', {template: ``});const sb_app_head_cart = sb_head_app.mount('#js-shopHeadContainer')window.remoteAddToCart = function(product) { if(sb_shop_vars.debug == true) console.log('--- BEGIN ADD 2 CART ---'); const sb_customer_level = sb_determine_customer_level(); var product = JSON.parse(JSON.stringify(product)); var sb_client = sb_shop_vars.client; var sb_storage = localStorage.getItem(sb_client); if(sb_shop_vars.debug == true) console.log(sb_storage); if(sb_storage===null){ sb_storage = sb_init_storage_structure(); } else { sb_storage = JSON.parse(sb_storage); } // Global variables var add2CartTimeout; // Product details var prod_key = product.id; var prod_qty = Number(1); var add2cartPrice = product.price[sb_app_head_cart.sb_currency].final[sb_shop_vars.tax]; // Quantity price check if(product.price[sb_app_head_cart.sb_currency].qtydiscounts) { var add2cartPrice = sb_quantity_price_check(add2cartPrice, prod_qty, product.price[sb_app_head_cart.sb_currency].qtydiscounts); } var add2cartObj = {}; var attrSelections = {}; var attrSelectionsStr = ''; var attrResult = sb_process_attr_selections(true, true); if(sb_shop_vars.debug == true){ console.log(add2cartObj); console.log(attrSelections); console.log(attrSelectionsStr); console.log(prod_key); } if(prod_key in sb_storage.cart.contents){ sb_storage.cart.contents[prod_key]['qty'] += prod_qty; sb_storage.cart.head[prod_key]['qty'] += prod_qty; } else { sb_storage.cart.contents[prod_key] = {}; sb_storage.cart.contents[prod_key]['qty'] = prod_qty; sb_storage.cart.contents[prod_key]['attributes'] = attrSelections; sb_storage.cart.head[prod_key] = {}; sb_storage.cart.head[prod_key]['id'] = prod_key; sb_storage.cart.head[prod_key]['name'] = product.title.replace(/"/g, '\\"'); sb_storage.cart.head[prod_key]['link'] = product.path; sb_storage.cart.head[prod_key]['image'] = product.image.cart; sb_storage.cart.head[prod_key]['qty'] = prod_qty; sb_storage.cart.head[prod_key]['price'] = add2cartPrice.toString(); } if(sb_shop_vars.debug == true){ console.log('sb_storage obj:'); console.log(sb_storage); sb_storage_str = JSON.stringify(sb_storage); console.log('sb_storage json string:') console.log(sb_storage_str); } sb_update_sesh_token(sb_app_head_cart.sb_key,sb_storage); sb_app_head_cart.sb_storage = sb_storage; sb_app_head_cart.sb_get_cart_details(); sb_app_head_cart.sb_cart_show = true; clearTimeout(add2CartTimeout); add2CartTimeout = setTimeout(function(){ sb_app_head_cart.sb_cart_show = false; }, 3000); if(sb_shop_vars.debug == true) console.log('--- END ADD 2 CART ---');}

SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (3)

SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (4) SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (5) SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (6) SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (7)

SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (8)

1965 Ford Falcon XP Deluxe sedan

HIGHLIGHTS: – Genuine 73,704 miles from new – Cosmetic restoration on original car – Metallic Sunlit Beige with white rood – 200ci Super Pursuit 6cyl engine – Three speed automatic – Fashion pack – Rear venetian blinds – Accessory sunvisor – Original style wheels and caps

This 1965 Ford Falcon XP Deluxe sedan is one of the cleanest examples we have ever seen. The car has received a cosmetic restoration externally while retaining its originality where ever possible. You can see that the car has lived a pampered life, appears to be genuine low kms and has been well kept in a dry environment.

Externally, the car has been given a freshen up, with a closed door repaint in its original colour of Sunlit Beige Metallic with a white roof. The door jambs, inside the boot and under the bonnet remains in original paint. The bumpers have been rechromed or refinished and the stainless trim polished. There is an accessory sunvisor up front as well as weather shields on the front windows. The stainless-steel sill moulds are Ford original items. The car sits on original steel wheels with hubcaps and trim rings.

Inside the car is very well presented with the optional ‘fashion pack’ interior. This pack included cloth insert seats, floor carpets, padded sunvisors, padded dash top and arm rests on the rear doors. Other genuine accessories include Ford blower/heater, 5-star push button radio with front speaker, rear speaker and under dash fade control, foot operated screen washers/wipe unit and interior venetian blinds.

Under the bonnet lives the original 200ci ‘Super Pursuit’ 6 cyl engine. The engine bay is all original in its presentation and totally unrestored. The engine is paired to a column shifter, three speed automatic transmission and pushed to the rear wheels through the factory 3-2:1 differential. Underneath the car is all completely original and honest as the day is long. There is no evidence or any rust repairs, the floor pans are clean and undamaged and many of the original production paint dabs and marking remain in place.

This is a fantastic example of a genuine, low milage, well optioned, XP Falcon sedan with a bunch of genuine accessories. The sale includes the original hand books and sales brochure. The car would make a great family cruiser or collector piece.

Bidding Opens: Friday the 1st of December at 6pm Bidding Closes: Monday the 11th of December from 6pm QLD Time

FOR REGISTRATION ASSISTANCE PLEASE CALL 0403 935 488 SEVEN82MOTORS Classics, Lowriders & Muscle Cars are based on the Gold Coast, Queensland and offer some of the most sought after cars in Australia.

PLEASE CALL LOCKY MCCANN WITH SALES ENQUIRIES ON 0403 935 488

IMPORTANT: Vehicle information is provided to us by the consignee. We do everything we can to qualify the best cars in the Australian market to represent on consignment for private sellers however, they are still old cars and we can’t capture everything in the photos, we don’t drive them any significant distance and can’t know everything about them. It is the responsibility of the buyer to have thoroughly inspected the vehicle, and to have satisfied themselves as to the condition and value and to purchase based upon that judgement solely. Vehicles may have been sitting for some time and it is suggested that to protect your investment, you allow to change fuel, oil, fluids, filters and inspect brakes prior to use. All vehicles are sold under standard auction conditions, consignment and auction vehicles are sold as is, without registration unless otherwise stated and there is no cooling off period or warranty expressed, written or implied. All sales are final. Independent inspections are welcome and strongly encouraged to help with your decision making.

Located at 2 Palings Court, Nerang on the Gold Coast. Inspections by appointment during auction and public openings/viewing as advertised.












SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (123)

SOLD! LOT 11 - 1965 FORD XP FALCON DELUXE SEDAN - SEVEN82MOTORS (2024)

References

Top Articles
Latest Posts
Article information

Author: Mrs. Angelic Larkin

Last Updated:

Views: 6112

Rating: 4.7 / 5 (67 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Mrs. Angelic Larkin

Birthday: 1992-06-28

Address: Apt. 413 8275 Mueller Overpass, South Magnolia, IA 99527-6023

Phone: +6824704719725

Job: District Real-Estate Facilitator

Hobby: Letterboxing, Vacation, Poi, Homebrewing, Mountain biking, Slacklining, Cabaret

Introduction: My name is Mrs. Angelic Larkin, I am a cute, charming, funny, determined, inexpensive, joyous, cheerful person who loves writing and wants to share my knowledge and understanding with you.